@@ -46,8 +46,8 @@ msgstr ""
46
46
"целиком в рамках одного запроса. ``begin``, ``commit`` и другие TX-"
47
47
"инструкции могут быть отправлены и выполнены в разных запросах."
48
48
49
- msgid "New features "
50
- msgstr "Новые функциональные возможности"
49
+ msgid "Features "
50
+ msgstr "Функциональные возможности"
51
51
52
52
msgid ""
53
53
"The primary purpose of :term:`streams <stream>` is to execute transactions "
@@ -80,6 +80,15 @@ msgstr ""
80
80
"поддержкой стримов. Используя стримы с пользовательским коннектором, "
81
81
"необходимо передавать ``stream_id`` через протокол iproto."
82
82
83
+ msgid ""
84
+ "Interactive transactions over streams only work if the ``box.cfg{}`` option "
85
+ ":ref:`memtx_use_mvcc_engine <cfg_basic-memtx_use_mvcc_engine>` is enabled on"
86
+ " the server: ``memtx_use_mvcc_engine = true``."
87
+ msgstr ""
88
+ "Чтобы в стримах работали интерактивные транзакции, необходимо включить "
89
+ "параметр ``box.cfg{}`` :ref:`memtx_use_mvcc_engine <cfg_basic-"
90
+ "memtx_use_mvcc_engine>` на сервере: ``memtx_use_mvcc_engine = true``."
91
+
83
92
msgid "Interaction between streams and transactions"
84
93
msgstr "Взаимодействие между стримами и транзакциями"
85
94
@@ -122,15 +131,15 @@ msgid ""
122
131
"\n"
123
132
"-- Begin transaction over an iproto stream:\n"
124
133
"stream:begin()\n"
125
- "space :replace({1})\n"
134
+ "stream_space :replace({1})\n"
126
135
"\n"
127
136
"-- Empty select, the transaction was not committed.\n"
128
137
"-- You can't see it from the requests that do not belong to the\n"
129
138
"-- transaction.\n"
139
+ "conn_space:select{}\n"
130
140
"\n"
131
141
"-- Select returns the previously inserted tuple,\n"
132
142
"-- because this select belongs to the transaction:\n"
133
- "conn_space:select{}\n"
134
143
"stream_space:select({})\n"
135
144
"\n"
136
145
"-- Commit transaction:\n"
@@ -146,7 +155,7 @@ msgstr ""
146
155
"\n"
147
156
"-- Начать транзакцию через поток iproto:\n"
148
157
"stream:begin()\n"
149
- "space :replace({1})\n"
158
+ "stream_space :replace({1})\n"
150
159
"\n"
151
160
"-- Пустой select, коммит транзакции не выполнен.\n"
152
161
"-- Ее нельзя увидеть из запросов, не относящихся\n"
0 commit comments