aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/quit.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/quit.json')
-rw-r--r--examples/redis-unstable/src/commands/quit.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/examples/redis-unstable/src/commands/quit.json b/examples/redis-unstable/src/commands/quit.json
new file mode 100644
index 0000000..e8dd6e9
--- /dev/null
+++ b/examples/redis-unstable/src/commands/quit.json
@@ -0,0 +1,29 @@
1{
2 "QUIT": {
3 "summary": "Closes the connection.",
4 "complexity": "O(1)",
5 "group": "connection",
6 "since": "1.0.0",
7 "arity": -1,
8 "function": "quitCommand",
9 "deprecated_since": "7.2.0",
10 "replaced_by": "just closing the connection",
11 "doc_flags": [
12 "DEPRECATED"
13 ],
14 "command_flags": [
15 "ALLOW_BUSY",
16 "NOSCRIPT",
17 "LOADING",
18 "STALE",
19 "FAST",
20 "NO_AUTH"
21 ],
22 "acl_categories": [
23 "CONNECTION"
24 ],
25 "reply_schema": {
26 "const": "OK"
27 }
28 }
29}