aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/zscore.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/zscore.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/zscore.json')
-rw-r--r--examples/redis-unstable/src/commands/zscore.json60
1 files changed, 0 insertions, 60 deletions
diff --git a/examples/redis-unstable/src/commands/zscore.json b/examples/redis-unstable/src/commands/zscore.json
deleted file mode 100644
index 5022470..0000000
--- a/examples/redis-unstable/src/commands/zscore.json
+++ /dev/null
@@ -1,60 +0,0 @@
1{
2 "ZSCORE": {
3 "summary": "Returns the score of a member in a sorted set.",
4 "complexity": "O(1)",
5 "group": "sorted_set",
6 "since": "1.2.0",
7 "arity": 3,
8 "function": "zscoreCommand",
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 "oneOf": [
38 {
39 "type": "number",
40 "description": "The score of the member (a double precision floating point number). In RESP2, this is returned as string."
41 },
42 {
43 "type": "null",
44 "description": "Member does not exist in the sorted set, or key does not exist."
45 }
46 ]
47 },
48 "arguments": [
49 {
50 "name": "key",
51 "type": "key",
52 "key_spec_index": 0
53 },
54 {
55 "name": "member",
56 "type": "string"
57 }
58 ]
59 }
60}