aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/zdiffstore.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/zdiffstore.json')
-rw-r--r--examples/redis-unstable/src/commands/zdiffstore.json77
1 files changed, 0 insertions, 77 deletions
diff --git a/examples/redis-unstable/src/commands/zdiffstore.json b/examples/redis-unstable/src/commands/zdiffstore.json
deleted file mode 100644
index 35b7203..0000000
--- a/examples/redis-unstable/src/commands/zdiffstore.json
+++ /dev/null
@@ -1,77 +0,0 @@
1{
2 "ZDIFFSTORE": {
3 "summary": "Stores the difference of multiple sorted sets in a key.",
4 "complexity": "O(L + (N-K)log(N)) worst case where L is the total number of elements in all the sets, N is the size of the first set, and K is the size of the result set.",
5 "group": "sorted_set",
6 "since": "6.2.0",
7 "arity": -4,
8 "function": "zdiffstoreCommand",
9 "get_keys_function": "zunionInterDiffStoreGetKeys",
10 "command_flags": [
11 "WRITE",
12 "DENYOOM"
13 ],
14 "acl_categories": [
15 "SORTEDSET"
16 ],
17 "key_specs": [
18 {
19 "flags": [
20 "OW",
21 "UPDATE"
22 ],
23 "begin_search": {
24 "index": {
25 "pos": 1
26 }
27 },
28 "find_keys": {
29 "range": {
30 "lastkey": 0,
31 "step": 1,
32 "limit": 0
33 }
34 }
35 },
36 {
37 "flags": [
38 "RO",
39 "ACCESS"
40 ],
41 "begin_search": {
42 "index": {
43 "pos": 2
44 }
45 },
46 "find_keys": {
47 "keynum": {
48 "keynumidx": 0,
49 "firstkey": 1,
50 "step": 1
51 }
52 }
53 }
54 ],
55 "reply_schema": {
56 "description": "Number of elements in the resulting sorted set at `destination`",
57 "type": "integer"
58 },
59 "arguments": [
60 {
61 "name": "destination",
62 "type": "key",
63 "key_spec_index": 0
64 },
65 {
66 "name": "numkeys",
67 "type": "integer"
68 },
69 {
70 "name": "key",
71 "type": "key",
72 "key_spec_index": 1,
73 "multiple": true
74 }
75 ]
76 }
77}