summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/zremrangebyscore.json
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/src/commands/zremrangebyscore.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/zremrangebyscore.json')
-rw-r--r--examples/redis-unstable/src/commands/zremrangebyscore.json55
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/redis-unstable/src/commands/zremrangebyscore.json b/examples/redis-unstable/src/commands/zremrangebyscore.json
deleted file mode 100644
index aed5d1b..0000000
--- a/examples/redis-unstable/src/commands/zremrangebyscore.json
+++ /dev/null
@@ -1,55 +0,0 @@
1{
2 "ZREMRANGEBYSCORE": {
3 "summary": "Removes members in a sorted set within a range of scores. 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": "1.2.0",
7 "arity": 4,
8 "function": "zremrangebyscoreCommand",
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": "min",
47 "type": "double"
48 },
49 {
50 "name": "max",
51 "type": "double"
52 }
53 ]
54 }
55}