diff options
Diffstat (limited to 'src/commands/cluster-setslot.json')
-rw-r--r-- | src/commands/cluster-setslot.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/commands/cluster-setslot.json b/src/commands/cluster-setslot.json new file mode 100644 index 0000000..ad0e9b5 --- /dev/null +++ b/src/commands/cluster-setslot.json @@ -0,0 +1,48 @@ +{ + "SETSLOT": { + "summary": "Bind a hash slot to a specific node", + "complexity": "O(1)", + "group": "cluster", + "since": "3.0.0", + "arity": -4, + "container": "CLUSTER", + "function": "clusterCommand", + "command_flags": [ + "NO_ASYNC_LOADING", + "ADMIN", + "STALE" + ], + "arguments": [ + { + "name": "slot", + "type": "integer" + }, + { + "name": "subcommand", + "type": "oneof", + "arguments": [ + { + "name": "node-id", + "type": "string", + "token": "IMPORTING" + }, + { + "name": "node-id", + "type": "string", + "token": "MIGRATING" + }, + { + "name": "node-id", + "type": "string", + "token": "NODE" + }, + { + "name": "stable", + "type": "pure-token", + "token": "STABLE" + } + ] + } + ] + } +} |