= 2.0.0 " />
Redis Hlen 命令用于獲取哈希表中字段的數(shù)量。
redis Hlen 命令基本語(yǔ)法如下:
redis 127.0.0.1:6379> HLEN KEY_NAME
>= 2.0.0
哈希表中字段的數(shù)量。 當(dāng) key 不存在時(shí),返回 0 。
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> HLEN myhash (integer) 2