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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
{
"KILL": {
"summary": "Kill the connection of a client",
"complexity": "O(N) where N is the number of client connections",
"group": "connection",
"since": "2.4.0",
"arity": -3,
"container": "CLIENT",
"function": "clientCommand",
"history": [
[
"2.8.12",
"Added new filter format."
],
[
"2.8.12",
"`ID` option."
],
[
"3.2.0",
"Added `master` type in for `TYPE` option."
],
[
"5.0.0",
"Replaced `slave` `TYPE` with `replica`. `slave` still supported for backward compatibility."
],
[
"6.2.0",
"`LADDR` option."
]
],
"command_flags": [
"ADMIN",
"NOSCRIPT",
"LOADING",
"STALE"
],
"acl_categories": [
"CONNECTION"
],
"arguments": [
{
"name": "ip:port",
"type": "string",
"optional": true
},
{
"token": "ID",
"name": "client-id",
"type": "integer",
"optional": true,
"since": "2.8.12"
},
{
"token": "TYPE",
"name": "normal_master_slave_pubsub",
"type": "oneof",
"optional": true,
"since": "2.8.12",
"arguments": [
{
"name": "normal",
"type": "pure-token",
"token": "normal"
},
{
"name": "master",
"type": "pure-token",
"token": "master",
"since": "3.2.0"
},
{
"name": "slave",
"type": "pure-token",
"token": "slave"
},
{
"name": "replica",
"type": "pure-token",
"token": "replica",
"since": "5.0.0"
},
{
"name": "pubsub",
"type": "pure-token",
"token": "pubsub"
}
]
},
{
"token": "USER",
"name": "username",
"type": "string",
"optional": true
},
{
"token": "ADDR",
"name": "ip:port",
"type": "string",
"optional": true
},
{
"token": "LADDR",
"name": "ip:port",
"type": "string",
"optional": true,
"since": "6.2.0"
},
{
"token": "SKIPME",
"name": "yes/no",
"type": "string",
"optional": true
}
]
}
}
|