summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/cluster-addslotsrange.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/cluster-addslotsrange.json')
-rw-r--r--examples/redis-unstable/src/commands/cluster-addslotsrange.json36
1 files changed, 0 insertions, 36 deletions
diff --git a/examples/redis-unstable/src/commands/cluster-addslotsrange.json b/examples/redis-unstable/src/commands/cluster-addslotsrange.json
deleted file mode 100644
index 4ff8a40..0000000
--- a/examples/redis-unstable/src/commands/cluster-addslotsrange.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "ADDSLOTSRANGE": {
- "summary": "Assigns new hash slot ranges to a node.",
- "complexity": "O(N) where N is the total number of the slots between the start slot and end slot arguments.",
- "group": "cluster",
- "since": "7.0.0",
- "arity": -4,
- "container": "CLUSTER",
- "function": "clusterCommand",
- "command_flags": [
- "NO_ASYNC_LOADING",
- "ADMIN",
- "STALE"
- ],
- "arguments": [
- {
- "name": "range",
- "type": "block",
- "multiple": true,
- "arguments": [
- {
- "name": "start-slot",
- "type": "integer"
- },
- {
- "name": "end-slot",
- "type": "integer"
- }
- ]
- }
- ],
- "reply_schema": {
- "const": "OK"
- }
- }
-}