HLEN

Syntax
HLEN key
Available since:
2.0.0
Time complexity:
O(1)
ACL categories:
@read, @hash, @fast,

返回存储在key中的哈希包含的字段数量。

示例

HSET myhash field1 "Hello" HSET myhash field2 "World" HLEN myhash

RESP2 回复

Integer reply: the number of fields in the hash, or 0 when the key does not exist.

RESP3 回复

Integer reply: the number of the fields in the hash, or 0 when the key does not exist.
RATE THIS PAGE
Back to top ↑