File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Transaction mode: default
4
4
===========================
5
5
6
6
By default, Tarantool does not allow :ref: `"yielding" <app-yields >` inside a :ref: `memtx <engines-chapter >`
7
- transaction and the :ref: `transaction manager <txn_mode_mvcc-tnx -manager >` is disabled. This allows fast
7
+ transaction and the :ref: `transaction manager <txn_mode_mvcc-txn -manager >` is disabled. This allows fast
8
8
atomic transactions without conflicts, but brings some limitations:
9
9
10
10
* You cannot use :ref: `interactive transactions <txn_mode_interactive_transaction >`.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ but has a different implementation.
18
18
19
19
Currently, you cannot use several different storage engines within one transaction.
20
20
21
- .. _txn_mode_mvcc-tnx -manager :
21
+ .. _txn_mode_mvcc-txn -manager :
22
22
23
23
Transaction manager
24
24
-------------------
@@ -97,7 +97,7 @@ You can set an isolation level for a specific transaction in its ``box.begin()``
97
97
98
98
.. code-block :: lua
99
99
100
- box.begin({ tnx_isolation = 'best-effort' })
100
+ box.begin({ txn_isolation = 'best-effort' })
101
101
102
102
In this case, you can also use the ``default `` option. It sets the transaction's isolation level
103
103
to the one set in ``box.cfg ``.
Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ RTREE index can accept two types of ``distance`` functions: ``euclid`` and ``man
260
260
.. warning ::
261
261
262
262
Currently, the :ref: `isolation level <transaction_model_levels >` of RTREE indexes
263
- in :ref: `MVCC transaction mode <txn_mode_mvcc-tnx -manager >` is *read-committed * (not *serializable *, as stated).
263
+ in :ref: `MVCC transaction mode <txn_mode_mvcc-txn -manager >` is *read-committed * (not *serializable *, as stated).
264
264
If a transaction uses these indexes, it can read committed or confirmed data (depending on the isolation level).
265
265
However, the indexes are subject to different anomalies that can make them unserializable.
266
266
@@ -443,7 +443,7 @@ attributes.
443
443
.. warning ::
444
444
445
445
Currently, the :ref: `isolation level <transaction_model_levels >` of BITSET indexes
446
- in :ref: `MVCC transaction mode <txn_mode_mvcc-tnx -manager >` is *read-committed * (not *serializable *, as stated).
446
+ in :ref: `MVCC transaction mode <txn_mode_mvcc-txn -manager >` is *read-committed * (not *serializable *, as stated).
447
447
If a transaction uses these indexes, it can read committed or confirmed data (depending on the isolation level).
448
448
However, the indexes are subject to different anomalies that can make them unserializable.
449
449
You can’t perform that action at this time.
0 commit comments