这篇教程Redis Pfcount 命令写得很实用,希望能帮到您。 Redis Pfcount 命令返回给定 HyperLogLog 的基数估算值。 语法 redis Pfcount 命令基本语法如下: redis 127.0.0.1:6379> PFCOUNT key [key ...] 可用版本>= 2.8.9 返回值整数,返回给定 HyperLogLog 的基数值,如果多个 HyperLogLog 则返回基数估值之和。 实例redis 127.0.0.1:6379> PFADD hll foo bar zap(integer) 1redis 127.0.0.1:6379> PFADD hll zap zap zap(integer) 0redis 127.0.0.1:6379> PFADD hll foo bar(integer) 0redis 127.0.0.1:6379> PFCOUNT hll(integer) 3redis 127.0.0.1:6379> PFADD some-other-hll 1 2 3(integer) 1redis 127.0.0.1:6379> PFCOUNT hll some-other-hll(integer) 6redis> Redis Pfadd 命令 Redis PFMERGE 命令 |