summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/zcount.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/zcount.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/zcount.json')
-rw-r--r--examples/redis-unstable/src/commands/zcount.json56
1 files changed, 0 insertions, 56 deletions
diff --git a/examples/redis-unstable/src/commands/zcount.json b/examples/redis-unstable/src/commands/zcount.json
deleted file mode 100644
index 0fdebd7..0000000
--- a/examples/redis-unstable/src/commands/zcount.json
+++ /dev/null
@@ -1,56 +0,0 @@
1{
2 "ZCOUNT": {
3 "summary": "Returns the count of members in a sorted set that have scores within a range.",
4 "complexity": "O(log(N)) with N being the number of elements in the sorted set.",
5 "group": "sorted_set",
6 "since": "2.0.0",
7 "arity": 4,
8 "function": "zcountCommand",
9 "command_flags": [
10 "READONLY",
11 "FAST"
12 ],
13 "acl_categories": [
14 "SORTEDSET"
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 number of elements in the specified score range",
38 "type": "integer"
39 },
40 "arguments": [
41 {
42 "name": "key",
43 "type": "key",
44 "key_spec_index": 0
45 },
46 {
47 "name": "min",
48 "type": "double"
49 },
50 {
51 "name": "max",
52 "type": "double"
53 }
54 ]
55 }
56}