diff options
Diffstat (limited to 'examples/redis-unstable/src/commands/zremrangebyrank.json')
| -rw-r--r-- | examples/redis-unstable/src/commands/zremrangebyrank.json | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/redis-unstable/src/commands/zremrangebyrank.json b/examples/redis-unstable/src/commands/zremrangebyrank.json deleted file mode 100644 index 7e668e8..0000000 --- a/examples/redis-unstable/src/commands/zremrangebyrank.json +++ /dev/null | |||
| @@ -1,55 +0,0 @@ | |||
| 1 | { | ||
| 2 | "ZREMRANGEBYRANK": { | ||
| 3 | "summary": "Removes members in a sorted set within a range of indexes. Deletes the sorted set if all members were removed.", | ||
| 4 | "complexity": "O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements removed by the operation.", | ||
| 5 | "group": "sorted_set", | ||
| 6 | "since": "2.0.0", | ||
| 7 | "arity": 4, | ||
| 8 | "function": "zremrangebyrankCommand", | ||
| 9 | "command_flags": [ | ||
| 10 | "WRITE" | ||
| 11 | ], | ||
| 12 | "acl_categories": [ | ||
| 13 | "SORTEDSET" | ||
| 14 | ], | ||
| 15 | "key_specs": [ | ||
| 16 | { | ||
| 17 | "flags": [ | ||
| 18 | "RW", | ||
| 19 | "DELETE" | ||
| 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 | "reply_schema": { | ||
| 36 | "type": "integer", | ||
| 37 | "description": "Number of elements removed." | ||
| 38 | }, | ||
| 39 | "arguments": [ | ||
| 40 | { | ||
| 41 | "name": "key", | ||
| 42 | "type": "key", | ||
| 43 | "key_spec_index": 0 | ||
| 44 | }, | ||
| 45 | { | ||
| 46 | "name": "start", | ||
| 47 | "type": "integer" | ||
| 48 | }, | ||
| 49 | { | ||
| 50 | "name": "stop", | ||
| 51 | "type": "integer" | ||
| 52 | } | ||
| 53 | ] | ||
| 54 | } | ||
| 55 | } | ||
