aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/mset.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/mset.json')
-rw-r--r--examples/redis-unstable/src/commands/mset.json62
1 files changed, 0 insertions, 62 deletions
diff --git a/examples/redis-unstable/src/commands/mset.json b/examples/redis-unstable/src/commands/mset.json
deleted file mode 100644
index 9a57446..0000000
--- a/examples/redis-unstable/src/commands/mset.json
+++ /dev/null
@@ -1,62 +0,0 @@
1{
2 "MSET": {
3 "summary": "Atomically creates or modifies the string values of one or more keys.",
4 "complexity": "O(N) where N is the number of keys to set.",
5 "group": "string",
6 "since": "1.0.1",
7 "arity": -3,
8 "function": "msetCommand",
9 "command_flags": [
10 "WRITE",
11 "DENYOOM"
12 ],
13 "acl_categories": [
14 "STRING"
15 ],
16 "command_tips": [
17 "REQUEST_POLICY:MULTI_SHARD",
18 "RESPONSE_POLICY:ALL_SUCCEEDED"
19 ],
20 "key_specs": [
21 {
22 "flags": [
23 "OW",
24 "UPDATE"
25 ],
26 "begin_search": {
27 "index": {
28 "pos": 1
29 }
30 },
31 "find_keys": {
32 "range": {
33 "lastkey": -1,
34 "step": 2,
35 "limit": 0
36 }
37 }
38 }
39 ],
40 "reply_schema": {
41 "const": "OK"
42 },
43 "arguments": [
44 {
45 "name": "data",
46 "type": "block",
47 "multiple": true,
48 "arguments": [
49 {
50 "name": "key",
51 "type": "key",
52 "key_spec_index": 0
53 },
54 {
55 "name": "value",
56 "type": "string"
57 }
58 ]
59 }
60 ]
61 }
62}