Easy Tutorial
❮ Hashes Hget Strings Msetnx ❯

Redis Pfcount Command

Redis HyperLogLog

The Redis Pfcount command returns the cardinality estimate of the given HyperLogLog.

Syntax

The basic syntax for the redis Pfcount command is as follows:

redis 127.0.0.1:6379> PFCOUNT key [key ...]

Available Versions

= 2.8.9

Return Value

Integer, returns the cardinality value of the given HyperLogLog, or the sum of the cardinality estimates if multiple HyperLogLogs are provided.

Example

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>

Redis HyperLogLog

❮ Hashes Hget Strings Msetnx ❯