aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/save.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/save.json')
-rw-r--r--examples/redis-unstable/src/commands/save.json19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/redis-unstable/src/commands/save.json b/examples/redis-unstable/src/commands/save.json
deleted file mode 100644
index 0645e27..0000000
--- a/examples/redis-unstable/src/commands/save.json
+++ /dev/null
@@ -1,19 +0,0 @@
1{
2 "SAVE": {
3 "summary": "Synchronously saves the database(s) to disk.",
4 "complexity": "O(N) where N is the total number of keys in all databases",
5 "group": "server",
6 "since": "1.0.0",
7 "arity": 1,
8 "function": "saveCommand",
9 "command_flags": [
10 "NO_ASYNC_LOADING",
11 "ADMIN",
12 "NOSCRIPT",
13 "NO_MULTI"
14 ],
15 "reply_schema": {
16 "const": "OK"
17 }
18 }
19}