
- fix `the the` typo - `LPOPRPUSH` does not exist, should be `RPOPLPUSH` - `CLUSTER GETKEYINSLOT` 's time complexity should be O(N) - `there bytes` should be `three bytes`, this closes #11266 - `slave` word to `replica` in log, modified the front and missed the back - remove useless aofReadDiffFromParent in server.h - `trackingHandlePendingKeyInvalidations` method adds a void parameter
28 lines
675 B
JSON
28 lines
675 B
JSON
{
|
|
"GETKEYSINSLOT": {
|
|
"summary": "Return local key names in the specified hash slot",
|
|
"complexity": "O(N) where N is the number of requested keys",
|
|
"group": "cluster",
|
|
"since": "3.0.0",
|
|
"arity": 4,
|
|
"container": "CLUSTER",
|
|
"function": "clusterCommand",
|
|
"command_flags": [
|
|
"STALE"
|
|
],
|
|
"command_tips": [
|
|
"NONDETERMINISTIC_OUTPUT"
|
|
],
|
|
"arguments": [
|
|
{
|
|
"name": "slot",
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"name": "count",
|
|
"type": "integer"
|
|
}
|
|
]
|
|
}
|
|
}
|