summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/sunionstore.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/sunionstore.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/sunionstore.json')
-rw-r--r--examples/redis-unstable/src/commands/sunionstore.json73
1 files changed, 0 insertions, 73 deletions
diff --git a/examples/redis-unstable/src/commands/sunionstore.json b/examples/redis-unstable/src/commands/sunionstore.json
deleted file mode 100644
index 94d4e16..0000000
--- a/examples/redis-unstable/src/commands/sunionstore.json
+++ /dev/null
@@ -1,73 +0,0 @@
1{
2 "SUNIONSTORE": {
3 "summary": "Stores the union of multiple sets in a key.",
4 "complexity": "O(N) where N is the total number of elements in all given sets.",
5 "group": "set",
6 "since": "1.0.0",
7 "arity": -3,
8 "function": "sunionstoreCommand",
9 "command_flags": [
10 "WRITE",
11 "DENYOOM"
12 ],
13 "acl_categories": [
14 "SET"
15 ],
16 "key_specs": [
17 {
18 "flags": [
19 "OW",
20 "UPDATE"
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 "flags": [
37 "RO",
38 "ACCESS"
39 ],
40 "begin_search": {
41 "index": {
42 "pos": 2
43 }
44 },
45 "find_keys": {
46 "range": {
47 "lastkey": -1,
48 "step": 1,
49 "limit": 0
50 }
51 }
52 }
53 ],
54 "reply_schema": {
55 "type": "integer",
56 "description": "Number of the elements in the resulting set.",
57 "minimum": 0
58 },
59 "arguments": [
60 {
61 "name": "destination",
62 "type": "key",
63 "key_spec_index": 0
64 },
65 {
66 "name": "key",
67 "type": "key",
68 "key_spec_index": 1,
69 "multiple": true
70 }
71 ]
72 }
73}