Skip to content

Commit 83707da

Browse files
committed
Fixes gh-48 Update vinyl terminology in intro
1 parent b9eaee7 commit 83707da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sphinx/intro.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,13 @@ Searches are possible via **secondary index keys** as well as primary keys.
9494

9595
**Tarantool's disk-based storage engine** is a fusion of ideas from modern filesystems,
9696
log-structured merge trees and classical B-trees. All data is organized
97-
into **runs**. Each run is represented by a file on disk. Run
97+
into **ranges**. Each range is represented by a file on disk. Range
9898
size is a configuration option and normally is around 64MB. Each
99-
run is a collection of pages, serving different purposes. Pages
100-
in a fully merged run contain non-overlapping ranges of keys. A run
99+
range is a collection of pages, serving different purposes. Pages
100+
in a fully merged range contain non-overlapping ranges of keys. A range
101101
can be partially merged if there were a lot of changes in its key range
102102
recently. In that case some pages represent new keys and values in the
103-
run. The disk-based storage engine is append only: new data never overwrites
103+
range. The disk-based storage engine is append only: new data never overwrites
104104
old data. The disk-based storage engine is named :ref:`vinyl <index-vinyl>`.
105105

106106
Tarantool supports **multi-part index keys**. The possible index types are HASH,

0 commit comments

Comments
 (0)