Redis Hash HVALS 命令

  • 描述

    Hash HVALS 命令用于获取存储在密钥处的哈希中的所有值。
  • HVALS句法

    以下是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"