Redis - 散列 Hash Hkeys 命令



Redis HKEYS 命令用于获取存储在键中的哈希中的所有字段名称。

返回值

数组回复,哈希中的字段列表,或在密钥不存在时为空列表。

语法

以下是 Redis HKEYS 命令的基本语法。

redis 127.0.0.1:6379> HKEYS KEY_NAME FIELD_NAME INCR_BY_NUMBER 

示例

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> HKEYS myhash 
1) "field1" 
2) "field2"
redis_hashes.htm
广告