You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recommend to use `tx()` instead of `multi()/exec()` for transactional operation.
123
-
`MULTI/EXEC` are potentially stateful operation so that operation's atomicity is guaranteed but redis's state may change between MULTI and EXEC.
124
+
We recommend to use `tx()` instead of `multi()/exec()` for transactional
125
+
operation. `MULTI/EXEC` are potentially stateful operation so that operation's
126
+
atomicity is guaranteed but redis's state may change between MULTI and EXEC.
124
127
125
-
`WATCH` is designed for these problems. You can ignore it by using TxPipeline because pipelined MULTI/EXEC commands are strictly executed in order at the time and no changes will happen during execution.
128
+
`WATCH` is designed for these problems. You can ignore it by using TxPipeline
129
+
because pipelined MULTI/EXEC commands are strictly executed in order at the time
0 commit comments