mirror of
https://github.com/redis/redis.git
synced 2026-04-21 14:18:38 -04:00
As discussed in https://github.com/redis/redis/pull/13749#issuecomment-2673612941. After #10398 we should record only the arguments and output changes in the command history, while placing all others in the redis-doc, so revert #13749.
25 lines
562 B
JSON
25 lines
562 B
JSON
{
|
|
"FORGET": {
|
|
"summary": "Removes 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"
|
|
}
|
|
],
|
|
"reply_schema": {
|
|
"const": "OK"
|
|
}
|
|
}
|
|
}
|