JSON 的 JSON 格式。ARRINSERT

语法
JSON.ARRINSERT key path index value [value ...]
可用:
Redis 堆栈 / JSON 1.0.0
时间复杂度:
O(N) 当 path 被计算为单个值时,其中 N 是数组的大小,O(N) 当 path 被计算为多个值时,其中 N 是键的大小

插入jsonvalues 添加到位于pathindex(向右移动)

例子

必需参数

key

是修改的关键。

value

是要插入一个或多个数组中的一个或多个值。

关于将字符串与 JSON 命令一起使用:
要将字符串指定为要插入的数组值,请用一组额外的单引号将带引号的字符串括起来。例:'"silver"'.有关更详细的使用方法,请参阅示例
index

是数组中要插入值的位置。索引必须在数组的范围内。插入位置index0 附加到数组前面。负索引值从数组的末尾开始。

可选参数

path

是 JSONPath 来指定。默认值为 root 。$

返回值

JSON.ARRINSERT返回每个路径的整数回复数组、数组的新大小或nil,如果匹配的 JSON 值不是数组。 有关回复的更多信息,请参阅 Redis 序列化协议规范

例子

将新颜色添加到产品颜色列表中的特定位置

为降噪耳机创建黑色和银色的文档。

redis> JSON.SET item:1 $ '{"name":"Noise-cancelling Bluetooth headphones","description":"Wireless Bluetooth headphones with noise-cancelling technology","connection":{"wireless":true,"type":"Bluetooth"},"price":99.98,"stock":25,"colors":["black","silver"]}'
OK

Add color blue to the end of the colors array. JSON.ARRAPEND returns the array's new size.

redis> JSON.ARRAPPEND item:1 $.colors '"blue"'
1) (integer) 3

Return the new length of the colors array.

redis> JSON.GET item:1
"{\"name\":\"Noise-cancelling Bluetooth headphones\",\"description\":\"Wireless Bluetooth headphones with noise-cancelling technology\",\"connection\":{\"wireless\":true,\"type\":\"Bluetooth\"},\"price\":99.98,\"stock\":25,\"colors\":[\"black\",\"silver\",\"blue\"]}"

Get the list of colors for the product.

redis> JSON.GET item:1 '$.colors[*]'
"[\"black\",\"silver\",\"blue\"]"

Insert two more colors after the second color. You now have five colors.

redis> JSON.ARRINSERT item:1 $.colors 2 '"yellow"' '"gold"'
1) (integer) 5

Get the updated list of colors.

redis> JSON.GET item:1 $.colors
"[[\"black\",\"silver\",\"yellow\",\"gold\",\"blue\"]]"

See also

JSON.ARRAPPEND | JSON.ARRINDEX


RATE THIS PAGE
Back to top ↑