JSON 的 JSON 格式。ARRAPPEND

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

jsonvalues 添加到位于path在其中的最后一个元素之后

例子

必需参数

key

是修改的关键。

value

是要附加到一个或多个数组的一个或多个值。

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

可选参数

path

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

返回值

JSON.ARRAPEND返回每个路径的整数回复数组、数组的新大小或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\"]}"

See also

JSON.ARRINDEX | JSON.ARRINSERT


RATE THIS PAGE
Back to top ↑