feat: add support for transaction
Signed-off-by: Pengda Yang <daz-3ux@proton.me>
This commit is contained in:
parent
c6e0796192
commit
ceb44e6255
73
cts.json
73
cts.json
|
@ -5248,5 +5248,78 @@
|
|||
"OK"
|
||||
],
|
||||
"since": "4.0.0"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "discard command",
|
||||
"command": [
|
||||
"multi",
|
||||
"set k v",
|
||||
"discard"
|
||||
],
|
||||
"result": [
|
||||
"OK",
|
||||
"QUEUED",
|
||||
"OK"
|
||||
],
|
||||
"since": "2.0.0"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "exec command",
|
||||
"command": [
|
||||
"multi",
|
||||
"set k v",
|
||||
"exec"
|
||||
],
|
||||
"result": [
|
||||
"OK",
|
||||
"QUEUED",
|
||||
[
|
||||
"OK"
|
||||
]
|
||||
],
|
||||
"since": "1.2.0"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "multi command",
|
||||
"command": [
|
||||
"multi",
|
||||
"set k v",
|
||||
"discard"
|
||||
],
|
||||
"result": [
|
||||
"OK",
|
||||
"QUEUED",
|
||||
"OK"
|
||||
],
|
||||
"since": "1.2.0"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "unwatch command",
|
||||
"command": [
|
||||
"watch key",
|
||||
"unwatch"
|
||||
],
|
||||
"result": [
|
||||
"OK",
|
||||
"True"
|
||||
],
|
||||
"since": "2.2.0"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "watch command",
|
||||
"command": [
|
||||
"watch key",
|
||||
"unwatch"
|
||||
],
|
||||
"result": [
|
||||
"OK",
|
||||
"True"
|
||||
],
|
||||
"since": "2.2.0"
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue