aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/sinter.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/sinter.json')
-rw-r--r--examples/redis-unstable/src/commands/sinter.json55
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/redis-unstable/src/commands/sinter.json b/examples/redis-unstable/src/commands/sinter.json
deleted file mode 100644
index ad5ac91..0000000
--- a/examples/redis-unstable/src/commands/sinter.json
+++ /dev/null
@@ -1,55 +0,0 @@
1{
2 "SINTER": {
3 "summary": "Returns the intersect of multiple sets.",
4 "complexity": "O(N*M) worst case where N is the cardinality of the smallest set and M is the number of sets.",
5 "group": "set",
6 "since": "1.0.0",
7 "arity": -2,
8 "function": "sinterCommand",
9 "command_flags": [
10 "READONLY"
11 ],
12 "acl_categories": [
13 "SET"
14 ],
15 "command_tips": [
16 "NONDETERMINISTIC_OUTPUT_ORDER"
17 ],
18 "key_specs": [
19 {
20 "flags": [
21 "RO",
22 "ACCESS"
23 ],
24 "begin_search": {
25 "index": {
26 "pos": 1
27 }
28 },
29 "find_keys": {
30 "range": {
31 "lastkey": -1,
32 "step": 1,
33 "limit": 0
34 }
35 }
36 }
37 ],
38 "reply_schema": {
39 "type": "array",
40 "description": "List with the members of the resulting set.",
41 "uniqueItems": true,
42 "items": {
43 "type": "string"
44 }
45 },
46 "arguments": [
47 {
48 "name": "key",
49 "type": "key",
50 "key_spec_index": 0,
51 "multiple": true
52 }
53 ]
54 }
55}