/
githubmirror
/
redis
Обзор
Документация
Войти
/
githubmirror
/
redis
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
7.2.14
src/commands/randomkey.json
34 строки
894 B
nihohit
Update request/response policies. (#12417)
25 июл 2023, 10:21
Не верифицирован
25 июл 2023, 10:21
9f51201
Код
Авторство
О чём код?
{ "RANDOMKEY": { "summary": "Returns a random key name from the database.", "complexity": "O(1)", "group": "generic", "since": "1.0.0", "arity": 1, "function": "randomkeyCommand", "command_flags": [ "READONLY", "TOUCHES_ARBITRARY_KEYS" ], "acl_categories": [ "KEYSPACE" ], "command_tips": [ "REQUEST_POLICY:ALL_SHARDS", "RESPONSE_POLICY:SPECIAL", "NONDETERMINISTIC_OUTPUT" ], "reply_schema": { "oneOf": [ { "description": "when the database is empty", "type": "null" }, { "description": "random key in db", "type": "string" } ] } } }