aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/get.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/get.json')
-rw-r--r--examples/redis-unstable/src/commands/get.json56
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/redis-unstable/src/commands/get.json b/examples/redis-unstable/src/commands/get.json
deleted file mode 100644
index 693c1ac..0000000
--- a/examples/redis-unstable/src/commands/get.json
+++ /dev/null
@@ -1,56 +0,0 @@
1{
2 "GET": {
3 "summary": "Returns the string value of a key.",
4 "complexity": "O(1)",
5 "group": "string",
6 "since": "1.0.0",
7 "arity": 2,
8 "function": "getCommand",
9 "command_flags": [
10 "READONLY",
11 "FAST"
12 ],
13 "acl_categories": [
14 "STRING"
15 ],
16 "key_specs": [
17 {
18 "flags": [
19 "RO",
20 "ACCESS"
21 ],
22 "begin_search": {
23 "index": {
24 "pos": 1
25 }
26 },
27 "find_keys": {
28 "range": {
29 "lastkey": 0,
30 "step": 1,
31 "limit": 0
32 }
33 }
34 }
35 ],
36 "reply_schema": {
37 "oneOf": [
38 {
39 "description": "The value of the key.",
40 "type": "string"
41 },
42 {
43 "description": "Key does not exist.",
44 "type": "null"
45 }
46 ]
47 },
48 "arguments": [
49 {
50 "name": "key",
51 "type": "key",
52 "key_spec_index": 0
53 }
54 ]
55 }
56}