Skip to content

Update data_model.rst #2035

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/book/box/data_model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Tarantool operates data in the form of tuples.
They play the same role as "row columns" or "record fields" in relational databases,
with a few improvements:

* fields can be composite structures, such as arrays or maps, and
* fields can be composite structures, such as arrays or maps,
* fields don't need to have names.

A given tuple may have any number of fields, and the fields may be of
Expand Down Expand Up @@ -73,9 +73,9 @@ In our example there's a space called ``'tester'``.
At least one space is required to store data with Tarantool.
Each space has the following attributes:

* a unique **name** specified by the user
* a unique **name** specified by the user,
* a unique **numeric identifier** which can be specified by
the user, but usually is assigned automatically by Tarantool.
the user, but usually is assigned automatically by Tarantool,
* an **engine**: *memtx* (default) -- in-memory engine,
fast but limited in size, or *vinyl* -- on-disk engine for huge data sets.

Expand Down