JSON 的 JSON 格式。ARRINDEX
语法
JSON.ARRINDEX key path value [start [stop]]
- 可用:
- Redis 堆栈 / JSON 1.0.0
- 时间复杂度:
- O(N) 当 path 被计算为单个值时,其中 N 是数组的大小,O(N) 当 path 被计算为多个值时,其中 N 是键的大小
搜索数组中 JSON 值的第一个匹配项
必需参数
key
是解析的关键。
path
是 JSONPath 来指定。
value
是值在一个或多个数组中查找其索引。
可选参数
start
包含要在要搜索的数组切片中指定的起始值。默认值为0
.
stop
是要在要搜索的数组切片中指定的独占 stop 值,包括最后一个元素。默认值为0
.负值被解释为从末尾开始。
关于超出范围的索引:
超出范围的索引舍入到数组的 start 和 end。反向索引范围 (例如从 1 到 0 的范围) 返回 unfound 或-1
.返回值
JSON.ARRINDEX
返回每个路径的整数回复数组,即与路径匹配的每个 JSON 值的数组中的第一个位置,-1
如果在数组中找不到,或者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\"]]"
Find the place where color silver
is located.
redis> JSON.ARRINDEX item:1 $..colors '"silver"'
1) (integer) 1
See also
JSON.ARRAPPEND
| JSON.ARRINSERT
Related topics