Redis Pfcount 命令返回給定 HyperLogLog 的基數(shù)估算值。
redis Pfcount 命令基本語(yǔ)法如下:
redis 127.0.0.1:6379> PFCOUNT key [key ...]
>= 2.8.9
整數(shù),返回給定 HyperLogLog 的基數(shù)值,如果多個(gè) HyperLogLog 則返回基數(shù)估值之和。
redis 127.0.0.1:6379> PFADD hll foo bar zap (integer) 1 redis 127.0.0.1:6379> PFADD hll zap zap zap (integer) 0 redis 127.0.0.1:6379> PFADD hll foo bar (integer) 0 redis 127.0.0.1:6379> PFCOUNT hll (integer) 3 redis 127.0.0.1:6379> PFADD some-other-hll 1 2 3 (integer) 1 redis 127.0.0.1:6379> PFCOUNT hll some-other-hll (integer) 6 redis>