aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/dump.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/dump.json')
-rw-r--r--examples/redis-unstable/src/commands/dump.json58
1 files changed, 0 insertions, 58 deletions
diff --git a/examples/redis-unstable/src/commands/dump.json b/examples/redis-unstable/src/commands/dump.json
deleted file mode 100644
index 9e772ed..0000000
--- a/examples/redis-unstable/src/commands/dump.json
+++ /dev/null
@@ -1,58 +0,0 @@
1{
2 "DUMP": {
3 "summary": "Returns a serialized representation of the value stored at a key.",
4 "complexity": "O(1) to access the key and additional O(N*M) to serialize it, where N is the number of Redis objects composing the value and M their average size. For small string values the time complexity is thus O(1)+O(1*M) where M is small, so simply O(1).",
5 "group": "generic",
6 "since": "2.6.0",
7 "arity": 2,
8 "function": "dumpCommand",
9 "command_flags": [
10 "READONLY"
11 ],
12 "acl_categories": [
13 "KEYSPACE"
14 ],
15 "command_tips": [
16 "NONDETERMINISTIC_OUTPUT"
17 ],
18 "key_specs": [
19 {
20 "flags": [
21 "RO",
22 "ACCESS"
23 ],
24 "begin_search": {
25 "index": {
26 "pos": 1
27 }
28 },
29 "find_keys": {
30 "range": {
31 "lastkey": 0,
32 "step": 1,
33 "limit": 0
34 }
35 }
36 }
37 ],
38 "reply_schema": {
39 "oneOf": [
40 {
41 "description": "The serialized value.",
42 "type": "string"
43 },
44 {
45 "description": "Key does not exist.",
46 "type": "null"
47 }
48 ]
49 },
50 "arguments": [
51 {
52 "name": "key",
53 "type": "key",
54 "key_spec_index": 0
55 }
56 ]
57 }
58}