Commit d7971f96 authored by Oran Agra's avatar Oran Agra
Browse files

Merge remote-tracking branch 'origin/unstable' into 7.0

parents d2b5a579 acfb4f7a
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
"since": "4.0.0", "since": "4.0.0",
"arity": 2, "arity": 2,
"container": "MEMORY", "container": "MEMORY",
"function": "memoryCommand" "function": "memoryCommand",
"command_tips": [
"REQUEST_POLICY:ALL_SHARDS",
"RESPONSE_POLICY:ALL_SUCCEEDED"
]
} }
} }
...@@ -8,7 +8,9 @@ ...@@ -8,7 +8,9 @@
"container": "MEMORY", "container": "MEMORY",
"function": "memoryCommand", "function": "memoryCommand",
"command_tips": [ "command_tips": [
"NONDETERMINISTIC_OUTPUT" "NONDETERMINISTIC_OUTPUT",
"REQUEST_POLICY:ALL_SHARDS",
"RESPONSE_POLICY:SPECIAL"
] ]
} }
} }
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
}, },
{ {
"name": "port", "name": "port",
"type": "string" "type": "integer"
}, },
{ {
"name": "key_or_empty_string", "name": "key_or_empty_string",
......
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
"command_flags": [ "command_flags": [
"ADMIN", "ADMIN",
"NOSCRIPT" "NOSCRIPT"
],
"command_tips": [
"NONDETERMINISTIC_OUTPUT_ORDER"
] ]
} }
} }
{
"LOADEX": {
"summary": "Load a module with extended parameters",
"complexity": "O(1)",
"group": "server",
"since": "7.0.0",
"arity": -3,
"container": "MODULE",
"function": "moduleCommand",
"command_flags": [
"NO_ASYNC_LOADING",
"ADMIN",
"NOSCRIPT",
"PROTECTED"
],
"arguments": [
{
"name": "path",
"type": "string"
},
{
"name": "configs",
"token": "CONFIG",
"type": "block",
"multiple": true,
"optional": true,
"arguments": [
{
"name": "name",
"type": "string"
},
{
"name": "value",
"type": "string"
}
]
},
{
"name": "args",
"token": "ARGS",
"type": "block",
"multiple": true,
"optional": true,
"arguments": [
{
"name": "arg",
"type": "string"
}
]
}
]
}
}
\ No newline at end of file
...@@ -5,20 +5,7 @@ ...@@ -5,20 +5,7 @@
"since": "1.0.0", "since": "1.0.0",
"arity": 1, "arity": 1,
"function": "monitorCommand", "function": "monitorCommand",
"history": [ "history": [],
[
"6.0.0",
"`AUTH` excluded from the command's output."
],
[
"6.2.0",
"`RESET` can be called to exit monitor mode."
],
[
"6.2.4",
"`AUTH`, `HELLO`, `EVAL`, `EVAL_RO`, `EVALSHA` and `EVALSHA_RO` included in the command's output."
]
],
"command_flags": [ "command_flags": [
"ADMIN", "ADMIN",
"NOSCRIPT", "NOSCRIPT",
......
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
"acl_categories": [ "acl_categories": [
"STRING" "STRING"
], ],
"command_tips": [
"REQUEST_POLICY:MULTI_SHARD",
"RESPONSE_POLICY:AGG_MIN"
],
"key_specs": [ "key_specs": [
{ {
"flags": [ "flags": [
......
...@@ -13,6 +13,9 @@ ...@@ -13,6 +13,9 @@
"acl_categories": [ "acl_categories": [
"KEYSPACE" "KEYSPACE"
], ],
"command_tips": [
"NONDETERMINISTIC_OUTPUT"
],
"key_specs": [ "key_specs": [
{ {
"flags": [ "flags": [
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"arguments": [ "arguments": [
{ {
"name": "replicationid", "name": "replicationid",
"type": "integer" "type": "string"
}, },
{ {
"name": "offset", "name": "offset",
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
"arguments": [ "arguments": [
{ {
"name": "pattern", "name": "pattern",
"type": "string", "type": "pattern",
"optional": true "optional": true
} }
] ]
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
"arguments": [ "arguments": [
{ {
"name": "pattern", "name": "pattern",
"type": "string", "type": "pattern",
"optional": true "optional": true
} }
] ]
......
...@@ -6,12 +6,7 @@ ...@@ -6,12 +6,7 @@
"since": "1.0.0", "since": "1.0.0",
"arity": 3, "arity": 3,
"function": "renameCommand", "function": "renameCommand",
"history": [ "history": [],
[
"3.2.0",
"The command no longer returns an error when source and destination names are the same."
]
],
"command_flags": [ "command_flags": [
"WRITE" "WRITE"
], ],
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
}, },
{ {
"name": "port", "name": "port",
"type": "string" "type": "integer"
} }
] ]
} }
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
"history": [ "history": [
[ [
"6.2.0", "6.2.0",
"Added the `ASYNC` and `SYNC` flushing mode modifiers, as well as the **lazyfree-lazy-user-flush** configuration directive." "Added the `ASYNC` and `SYNC` flushing mode modifiers."
] ]
], ],
"command_flags": [ "command_flags": [
......
...@@ -10,6 +10,12 @@ ...@@ -10,6 +10,12 @@
"ADMIN", "ADMIN",
"SENTINEL", "SENTINEL",
"ONLY_SENTINEL" "ONLY_SENTINEL"
],
"arguments": [
{
"name": "master-name",
"type": "string"
}
] ]
} }
} }
...@@ -11,6 +11,36 @@ ...@@ -11,6 +11,36 @@
"ADMIN", "ADMIN",
"SENTINEL", "SENTINEL",
"ONLY_SENTINEL" "ONLY_SENTINEL"
],
"arguments": [
{
"name":"set_or_get",
"type":"oneof",
"arguments":[
{
"name":"set_param_value",
"token":"SET",
"type":"block",
"multiple":true,
"arguments":[
{
"name":"parameter",
"type":"string"
},
{
"name":"value",
"type":"string"
}
]
},
{
"token":"GET",
"multiple":true,
"name":"parameter",
"type":"string"
}
]
}
] ]
} }
} }
...@@ -11,6 +11,23 @@ ...@@ -11,6 +11,23 @@
"ADMIN", "ADMIN",
"SENTINEL", "SENTINEL",
"ONLY_SENTINEL" "ONLY_SENTINEL"
],
"arguments": [
{
"name": "parameter_value",
"type": "block",
"multiple": true,
"arguments": [
{
"name": "parameter",
"type": "string"
},
{
"name": "value",
"type": "string"
}
]
}
] ]
} }
} }
...@@ -10,6 +10,12 @@ ...@@ -10,6 +10,12 @@
"ADMIN", "ADMIN",
"SENTINEL", "SENTINEL",
"ONLY_SENTINEL" "ONLY_SENTINEL"
],
"arguments": [
{
"name": "master-name",
"type": "string"
}
] ]
} }
} }
...@@ -11,6 +11,12 @@ ...@@ -11,6 +11,12 @@
"ADMIN", "ADMIN",
"SENTINEL", "SENTINEL",
"ONLY_SENTINEL" "ONLY_SENTINEL"
],
"arguments": [
{
"name": "master-name",
"type": "string"
}
] ]
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment