Skip to content

Commit b26fee2

Browse files
committed
Attempt to fix panels
Panels are not available for preview in the local build. * Add Overview to the index * Fix panel formatting
1 parent c3b4a47 commit b26fee2

File tree

3 files changed

+39
-15
lines changed

3 files changed

+39
-15
lines changed

doc/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
.. toctree::
5151
:maxdepth: 1
5252

53+
overview
5354
getting_started/index
5455
book/box/data_model
5556
CRUD operations <reference/reference_lua/box_space>

doc/overview.rst

+37-15
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Overview
44
What is Tarantool?
55
------------------
66

7-
Tarantool combines an in-memory DBMS and a Lua server in a single platform, which
8-
provides ACID-compliant storage. It comes in :ref:`open-source and commercial editions <overview-editions>`.
7+
Tarantool combines an in-memory DBMS and a Lua server in a single platform
8+
providing ACID-compliant storage. It comes in :ref:`open-source and commercial editions <overview-editions>`.
99
The :ref:`use cases <overview-use_cases>` for Tarantool vary from ultra-fast cache
1010
to product data marts and smart queue services.
1111

@@ -19,32 +19,59 @@ Here are some of Tarantool's key characteristics:
1919
:body: doc-card__text
2020

2121
Row-based storage data
22-
^^^^^^^^^^^^^^^^^^^^^^
22+
23+
^^^
24+
2325
Data is stored in tuples
26+
2427
---
28+
2529
Easy handling of OLTP workloads
26-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30+
31+
^^^
32+
2733
Processes hundreds of thousands RPS
34+
2835
---
36+
2937
Data integrity
30-
^^^^^^^^^^^^^^
38+
39+
^^^
40+
3141
Write-ahead log (WAL) and data snapshots
42+
3243
---
44+
3345
Cooperative multitasking
34-
^^^^^^^^^^^^^^^^^^^^^^^^
46+
47+
^^^
48+
3549
Transactions are performed in lightweight coroutines with no interthread locking
50+
3651
---
52+
3753
Advanced indexing
38-
^^^^^^^^^^^^^^^^^
54+
55+
^^^
56+
3957
Composite indexes, locale support, indexing by nested fields and arrays
58+
4059
---
60+
4161
Compute close to data
42-
^^^^^^^^^^^^^^^^^^^^^
62+
63+
^^^
64+
4365
Lua server and Just-In-Time compiler on board
66+
4467
---
45-
Durable replication
46-
^^^^^^^^^^^^^^^^^^^
68+
69+
Durable distributed storage
70+
71+
^^^
72+
4773
Multiple failover modes and RAFT-based synchronous replication available
74+
4875

4976
Tarantool allows executing code alongside data, which helps increase the speed of operations.
5077
Developers can implement any business logic with Lua,
@@ -79,11 +106,6 @@ and is more predictable in terms of solution cost and maintenance.
79106
The Enterprise Edition is shipped as an SDK and includes a number of closed-source modules.
80107
See the `documentation for Tarantool EE <https://www.tarantool.io/en/enterprise_doc/>`__.
81108

82-
For a focus on business logic, try `Tarantool Data Grid <https://www.tarantool.io/en/datagrid/>`__ --
83-
a data integration tool with a web GUI perfectly suitable for non-programmers.
84-
Tarantool Data Grid is also based on the Community Edition.
85-
See the `documentation for Tarantool Data Grid <https://www.tarantool.io/en/tdg/1.6/>`__.
86-
87109
.. _overview-use_cases:
88110

89111
Use cases

doc/toctree.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
:maxdepth: 7
55
:includehidden:
66

7+
overview
78
getting_started/index
89
book/box/data_model
910
CRUD operations <reference/reference_lua/box_space>

0 commit comments

Comments
 (0)