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"