小兔网

2021071307275610766780 Redis 哈希(Hash)

Redis Hvals 命令返回哈希表所有的值。

语法

redis Hvals 命令基本语法如下:

redis 127.0.0.1:6379> HVALS key

可用版本

>= 2.0.0

返回值

一个包含哈希表中所有值的列表。当 key 不存在时,返回一个空表。

实例

redis 127.0.0.1:6379> HSET myhash field1 "foo"(integer) 1redis 127.0.0.1:6379> HSET myhash field2 "bar"(integer) 1redis 127.0.0.1:6379> HVALS myhash1) "foo"2) "bar"# 空哈希表/不存在的keyredis 127.0.0.1:6379> EXISTS not_exists(integer) 0redis 127.0.0.1:6379> HVALS not_exists(empty list or set)

2021071307275610766780 Redis 哈希(Hash)