1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
"PAUSE": {
"summary": "Suspends commands processing.",
"complexity": "O(1)",
"group": "connection",
"since": "3.0.0",
"arity": -3,
"container": "CLIENT",
"function": "clientCommand",
"history": [
[
"6.2.0",
"`CLIENT PAUSE WRITE` mode added along with the `mode` option."
]
],
"command_flags": [
"ADMIN",
"NOSCRIPT",
"LOADING",
"STALE",
"SENTINEL"
],
"acl_categories": [
"CONNECTION"
],
"arguments": [
{
"name": "timeout",
"type": "integer"
},
{
"name": "mode",
"type": "oneof",
"optional": true,
"since": "6.2.0",
"arguments": [
{
"name": "write",
"type": "pure-token",
"token": "WRITE"
},
{
"name": "all",
"type": "pure-token",
"token": "ALL"
}
]
}
],
"reply_schema": {
"const": "OK"
}
}
}
|