aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/lrange.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/lrange.json')
-rw-r--r--examples/redis-unstable/src/commands/lrange.json58
1 files changed, 0 insertions, 58 deletions
diff --git a/examples/redis-unstable/src/commands/lrange.json b/examples/redis-unstable/src/commands/lrange.json
deleted file mode 100644
index 303d2f6..0000000
--- a/examples/redis-unstable/src/commands/lrange.json
+++ /dev/null
@@ -1,58 +0,0 @@
1{
2 "LRANGE": {
3 "summary": "Returns a range of elements from a list.",
4 "complexity": "O(S+N) where S is the distance of start offset from HEAD for small lists, from nearest end (HEAD or TAIL) for large lists; and N is the number of elements in the specified range.",
5 "group": "list",
6 "since": "1.0.0",
7 "arity": 4,
8 "function": "lrangeCommand",
9 "command_flags": [
10 "READONLY"
11 ],
12 "acl_categories": [
13 "LIST"
14 ],
15 "key_specs": [
16 {
17 "flags": [
18 "RO",
19 "ACCESS"
20 ],
21 "begin_search": {
22 "index": {
23 "pos": 1
24 }
25 },
26 "find_keys": {
27 "range": {
28 "lastkey": 0,
29 "step": 1,
30 "limit": 0
31 }
32 }
33 }
34 ],
35 "arguments": [
36 {
37 "name": "key",
38 "type": "key",
39 "key_spec_index": 0
40 },
41 {
42 "name": "start",
43 "type": "integer"
44 },
45 {
46 "name": "stop",
47 "type": "integer"
48 }
49 ],
50 "reply_schema": {
51 "description": "List of elements in the specified range",
52 "type": "array",
53 "items": {
54 "type": "string"
55 }
56 }
57 }
58}