aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/getbit.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/getbit.json')
-rw-r--r--examples/redis-unstable/src/commands/getbit.json59
1 files changed, 0 insertions, 59 deletions
diff --git a/examples/redis-unstable/src/commands/getbit.json b/examples/redis-unstable/src/commands/getbit.json
deleted file mode 100644
index 629f5db..0000000
--- a/examples/redis-unstable/src/commands/getbit.json
+++ /dev/null
@@ -1,59 +0,0 @@
1{
2 "GETBIT": {
3 "summary": "Returns a bit value by offset.",
4 "complexity": "O(1)",
5 "group": "bitmap",
6 "since": "2.2.0",
7 "arity": 3,
8 "function": "getbitCommand",
9 "command_flags": [
10 "READONLY",
11 "FAST"
12 ],
13 "acl_categories": [
14 "BITMAP"
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 "description": "The bit value stored at offset.",
38 "oneOf": [
39 {
40 "const": 0
41 },
42 {
43 "const": 1
44 }
45 ]
46 },
47 "arguments": [
48 {
49 "name": "key",
50 "type": "key",
51 "key_spec_index": 0
52 },
53 {
54 "name": "offset",
55 "type": "integer"
56 }
57 ]
58 }
59}