diff options
Diffstat (limited to 'src/commands/cluster-forget.json')
-rw-r--r-- | src/commands/cluster-forget.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/commands/cluster-forget.json b/src/commands/cluster-forget.json new file mode 100644 index 0000000..6668eab --- /dev/null +++ b/src/commands/cluster-forget.json @@ -0,0 +1,22 @@ +{ + "FORGET": { + "summary": "Remove a node from the nodes table", + "complexity": "O(1)", + "group": "cluster", + "since": "3.0.0", + "arity": 3, + "container": "CLUSTER", + "function": "clusterCommand", + "command_flags": [ + "NO_ASYNC_LOADING", + "ADMIN", + "STALE" + ], + "arguments": [ + { + "name": "node-id", + "type": "string" + } + ] + } +} |