blob: 6c55210d2a2635a9039f3c8fa5914e5b7edd942f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"UNPAUSE": {
"summary": "Resumes processing commands from paused clients.",
"complexity": "O(N) Where N is the number of paused clients",
"group": "connection",
"since": "6.2.0",
"arity": 2,
"container": "CLIENT",
"function": "clientCommand",
"command_flags": [
"ADMIN",
"NOSCRIPT",
"LOADING",
"STALE",
"SENTINEL"
],
"acl_categories": [
"CONNECTION"
],
"reply_schema": {
"const": "OK"
}
}
}
|