位置:首頁 > 數據庫 > Redis教學 > Redis HVALS命令

Redis HVALS命令

Redis HVALS命令用於獲取在存儲於 key的散列的所有值。

返回值

回複數組,列表中的散列值,或當key不存在則為一個空的列表。

語法

Redis HVALS命令的基本語法如下所示:

redis 127.0.0.1:6379> HVALS KEY_NAME FIELD VALUE 

例子

redis 127.0.0.1:6379> HSET myhash field1 "foo"
(integer) 1
redis 127.0.0.1:6379> HSET myhash field2 "bar"
(integer) 1
redis 127.0.0.1:6379> HVALS myhash
1) "foo"
2) "bar"