JSON 的 JSON 格式。ARRPOP

语法
JSON.ARRPOP key [path [index]]
可用:
Redis 堆栈 / JSON 1.0.0
时间复杂度:
O(N) 当 path 被计算为单个值时,其中 N 是数组的大小,并且指定的索引不是最后一个元素,O(1) 当 path 被计算为单个值并且指定的索引是最后一个元素时,或 O(N) 当 path 被计算为多个值时,其中 N 是键的大小

从数组的索引中删除并返回一个元素

例子

必需参数

key

是修改的关键。

index

是数组中要开始弹出的位置。默认值为-1,表示最后一个元素。超出范围的索引舍入到它们各自的数组端。弹出空数组返回 null。

可选参数

path

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

返回

JSON.ARRPOP返回每个路径的批量字符串回复数组,每个回复都是弹出的 JSON 值,或者nil,如果匹配的 JSON 值不是数组。 有关回复的更多信息,请参阅 Redis 序列化协议规范

例子

从索引中弹出一个值并插入一个新值

创建两个具有最大声级的耳机产品。

redis> JSON.SET key $ '[{"name":"Healthy headphones","description":"Wireless Bluetooth headphones with noise-cancelling technology","connection":{"wireless":true,"type":"Bluetooth"},"price":99.98,"stock":25,"colors":["black","silver"],"max_level":[60,70,80]},{"name":"Noisy headphones","description":"Wireless Bluetooth headphones with noise-cancelling technology","connection":{"wireless":true,"type":"Bluetooth"},"price":99.98,"stock":25,"colors":["black","silver"],"max_level":[80,90,100,120]}]'
OK

Get all maximum values for the second product.

redis> JSON.GET key $.[1].max_level
"[[80,90,100,120]]"

Update the max_level field of the product: remove an unavailable value and add a newly available value.

redis> JSON.ARRPOP key $.[1].max_level 0
1) "80"

Get the updated array.

redis> JSON.GET key $.[1].max_level
"[[90,100,120]]"

Now insert a new lowest value.

redis> JSON.ARRINSERT key $.[1].max_level 0 85
1) (integer) 4

Get the updated array.

redis> JSON.GET key $.[1].max_level
"[[85,90,100,120]]"

See also

JSON.ARRAPPEND | JSON.ARRINDEX


RATE THIS PAGE
Back to top ↑