mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
- BITOP: turn argument `operation` from string to oneof - CLIENT KILL: turn argument `skipme` from string to oneof - COMMAND GETKEYS / GETKEYSANDFLAGS: change arguments to optional, and change arity to -3 (fixes regression in redis 7.0) - CLIENT PAUSE: this command was added in v3.0.0
32 lines
780 B
JSON
32 lines
780 B
JSON
{
|
|
"GETKEYS": {
|
|
"summary": "Extract keys given a full Redis command",
|
|
"complexity": "O(N) where N is the number of arguments to the command",
|
|
"group": "server",
|
|
"since": "2.8.13",
|
|
"arity": -3,
|
|
"container": "COMMAND",
|
|
"function": "commandGetKeysCommand",
|
|
"command_flags": [
|
|
"LOADING",
|
|
"STALE",
|
|
"SENTINEL"
|
|
],
|
|
"acl_categories": [
|
|
"CONNECTION"
|
|
],
|
|
"arguments": [
|
|
{
|
|
"name": "command",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "arg",
|
|
"type": "string",
|
|
"optional": true,
|
|
"multiple": true
|
|
}
|
|
]
|
|
}
|
|
}
|