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
|
{
"TRIMSLOTS": {
"summary": "Trim the keys that belong to specified slots.",
"complexity": "O(N) where N is the total number of keys in all databases",
"group": "server",
"since": "8.4.0",
"arity": -5,
"function": "trimslotsCommand",
"command_flags": [
"WRITE"
],
"acl_categories": [
"KEYSPACE",
"DANGEROUS"
],
"reply_schema": {
"const": "OK"
},
"arguments": [
{
"name": "ranges",
"token": "RANGES",
"type": "block",
"arguments": [
{
"name": "numranges",
"type": "integer"
},
{
"name": "slots",
"type": "block",
"multiple": true,
"arguments": [
{
"name": "startslot",
"type": "integer"
},
{
"name": "endslot",
"type": "integer"
}
]
}
]
}
]
}
}
|