HVALS

HVALS key

返回哈希表 key 中所有域的值。

  • 可用版本:
  • >= 2.0.0

  • 时间复杂度:

  • O(N), N 为哈希表的大小。

  • 返回值:

一个包含哈希表中所有值的表。

key 不存在时,返回一个空表。

  1. # 非空哈希表
  2.  
  3. redis> HMSET website google www.google.com yahoo www.yahoo.com
  4. OK
  5.  
  6. redis> HVALS website
  7. 1) "www.google.com"
  8. 2) "www.yahoo.com"
  9.  
  10.  
  11. # 空哈希表/不存在的key
  12.  
  13. redis> EXISTS not_exists
  14. (integer) 0
  15.  
  16. redis> HVALS not_exists
  17. (empty list or set)