futriix/src/commands/cluster-getkeysinslot.json
Binbin 3c02d1acc4
code, typo and comment cleanups (#11280)
- 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
2022-10-02 13:56:45 +03:00

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"
}
]
}
}