/
githubmirror
/
redis
Обзор
Документация
Войти
/
githubmirror
/
redis
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
unstable
src/commands/slaveof.json
64 строки
2 KB
Binbin
Support NO ONE block in REPLICAOF command json (#12633)
10 окт 2023, 11:10
Не верифицирован
10 окт 2023, 11:10
8d92f7f
Код
Авторство
О чём код?
{ "SLAVEOF": { "summary": "Sets a Redis server as a replica of another, or promotes it to being a master.", "complexity": "O(1)", "group": "server", "since": "1.0.0", "arity": 3, "function": "replicaofCommand", "deprecated_since": "5.0.0", "replaced_by": "`REPLICAOF`", "doc_flags": [ "DEPRECATED" ], "command_flags": [ "NO_ASYNC_LOADING", "ADMIN", "NOSCRIPT", "STALE" ], "arguments": [ { "name": "args", "type": "oneof", "arguments": [ { "name": "host-port", "type": "block", "arguments": [ { "name": "host", "type": "string" }, { "name": "port", "type": "integer" } ] }, { "name": "no-one", "type": "block", "arguments": [ { "name": "no", "type": "pure-token", "token": "NO" }, { "name": "one", "type": "pure-token", "token": "ONE" } ] } ] } ], "reply_schema": { "description": "slaveOf status", "type": "string", "pattern": "OK*" } } }