File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,13 +94,13 @@ Searches are possible via **secondary index keys** as well as primary keys.
94
94
95
95
**Tarantool's disk-based storage engine ** is a fusion of ideas from modern filesystems,
96
96
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
98
98
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
101
101
can be partially merged if there were a lot of changes in its key range
102
102
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
104
104
old data. The disk-based storage engine is named :ref: `vinyl <index-vinyl >`.
105
105
106
106
Tarantool supports **multi-part index keys **. The possible index types are HASH,
You can’t perform that action at this time.
0 commit comments