扫码一下
查看教程更方便
Redis HVALS 命令返回哈希表所有域(field)的值。
redis HVALS 命令基本语法如下:
redis 127.0.0.1:6379> HVALS KEY_NAME FIELD VALUE
>= 2.0.0
一个包含哈希表中所有域(field)值的列表。 当 key 不存在时,返回一个空表。
redis 127.0.0.1:6379> HSET myhash jiyik1 "foo"
(integer) 1
redis 127.0.0.1:6379> HSET myhash jiyik2 "bar"
(integer) 1
redis 127.0.0.1:6379> HVALS myhash
1) "foo"
2) "bar"
# 空哈希表/不存在的key
redis 127.0.0.1:6379> EXISTS not_exists
(integer) 0
redis 127.0.0.1:6379> HVALS not_exists
(empty list or set)
HVALS 命令时间复杂度: O(N) 其中N是哈希的长度。