JSON 的 JSON 格式。阿伦
语法
JSON.ARRLEN key [path]
- 可用:
- Redis 堆栈 / JSON 1.0.0
- 时间复杂度:
- O(1),其中 path 的计算结果为单个值,O(N) ,其中 path 的计算结果为多个值,其中 N 是键的大小
在path
在key
必需参数
key
是解析的关键。
可选参数
path
是 JSONPath 来指定。如果未提供,则默认为 root 。如果$
key
或path
不存在。
返回
JSON.ARRLEN
返回一个整数回复数组,每个匹配值一个整数,每个是数组的长度,或者nil
,如果匹配值不是数组。
有关回复的更多信息,请参阅 Redis 序列化协议规范。
例子
获取文档中 JSON 数组的长度
为无线耳塞创建文档。
redis> JSON.SET item:2 $ '{"name":"Wireless earbuds","description":"Wireless Bluetooth in-ear headphones","connection":{"wireless":true,"type":"Bluetooth"},"price":64.99,"stock":17,"colors":["black","white"], "max_level":[80, 100, 120]}'
OK
Find lengths of arrays in all objects of the document.
redis> JSON.ARRLEN item:2 '$.[*]'
1) (nil)
2) (nil)
3) (nil)
4) (nil)
5) (nil)
6) (integer) 2
7) (integer) 3
Return the length of the max_level
array.
redis> JSON.ARRLEN item:2 '$..max_level'
1) (integer) 3
Get all the maximum level values.
redis> JSON.GET item:2 '$..max_level'
"[[80,100,120]]"
See also
JSON.ARRINDEX
| JSON.ARRINSERT
Related topics