summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/shutdown.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/shutdown.json')
-rw-r--r--examples/redis-unstable/src/commands/shutdown.json69
1 files changed, 0 insertions, 69 deletions
diff --git a/examples/redis-unstable/src/commands/shutdown.json b/examples/redis-unstable/src/commands/shutdown.json
deleted file mode 100644
index a9e45d4..0000000
--- a/examples/redis-unstable/src/commands/shutdown.json
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "SHUTDOWN": {
- "summary": "Synchronously saves the database(s) to disk and shuts down the Redis server.",
- "complexity": "O(N) when saving, where N is the total number of keys in all databases when saving data, otherwise O(1)",
- "group": "server",
- "since": "1.0.0",
- "arity": -1,
- "function": "shutdownCommand",
- "history": [
- [
- "7.0.0",
- "Added the `NOW`, `FORCE` and `ABORT` modifiers."
- ]
- ],
- "command_flags": [
- "ADMIN",
- "NOSCRIPT",
- "LOADING",
- "STALE",
- "NO_MULTI",
- "SENTINEL",
- "ALLOW_BUSY"
- ],
- "arguments": [
- {
- "name": "save-selector",
- "type": "oneof",
- "optional": true,
- "arguments": [
- {
- "name": "nosave",
- "type": "pure-token",
- "token": "NOSAVE"
- },
- {
- "name": "save",
- "type": "pure-token",
- "token": "SAVE"
- }
- ]
- },
- {
- "name": "now",
- "type": "pure-token",
- "token": "NOW",
- "optional": true,
- "since": "7.0.0"
- },
- {
- "name": "force",
- "type": "pure-token",
- "token": "FORCE",
- "optional": true,
- "since": "7.0.0"
- },
- {
- "name": "abort",
- "type": "pure-token",
- "token": "ABORT",
- "optional": true,
- "since": "7.0.0"
- }
- ],
- "reply_schema": {
- "description": "OK if ABORT was specified and shutdown was aborted. On successful shutdown, nothing is returned since the server quits and the connection is closed. On failure, an error is returned.",
- "const": "OK"
- }
- }
-}