/
githubmirror
/
redis
Обзор
Документация
Войти
/
githubmirror
/
redis
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
unstable
src/commands/arinsert.json
54 строки
1 KB
Salvatore Sanfilippo
Implement the new Redis Array type (#15162)
13 май 2026, 19:56
Не верифицирован
13 май 2026, 19:56
0d95764
Код
Авторство
О чём код?
{ "ARINSERT": { "summary": "Inserts one or more values at consecutive indices.", "complexity": "O(N) where N is the number of values", "group": "array", "since": "8.8.0", "arity": -3, "function": "arinsertCommand", "command_flags": [ "WRITE", "DENYOOM", "FAST" ], "acl_categories": [ "ARRAY" ], "key_specs": [ { "flags": [ "RW", "UPDATE" ], "begin_search": { "index": { "pos": 1 } }, "find_keys": { "range": { "lastkey": 0, "step": 1, "limit": 0 } } } ], "reply_schema": { "description": "The last index where a value was inserted.", "type": "integer" }, "arguments": [ { "name": "key", "type": "key", "key_spec_index": 0 }, { "name": "value", "type": "string", "multiple": true } ] } }