PFMERGE

Syntax
PFMERGE destkey [sourcekey [sourcekey ...]]
Available since:
2.8.9
Time complexity:
O(N) to merge N HyperLogLogs, but with high constant times.
ACL categories:
@write, @hyperloglog, @slow,

Merge multiple HyperLogLog values into a unique value that will approximate the cardinality of the union of the observed Sets of the source HyperLogLog structures.

The computed merged HyperLogLog is set to the destination variable, which is created if does not exist (defaulting to an empty HyperLogLog).

If the destination variable exists, it is treated as one of the source sets and its cardinality will be included in the cardinality of the computed HyperLogLog.

Examples

redis> PFADD hll1 foo bar zap a
"OK"
redis> PFADD hll2 a b c foo
(integer) 11
redis> PFMERGE hll3 hll1 hll2
"11"
redis> PFADD hll1 foo bar zap a
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis> PFADD hll2 a b c foo
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis> PFMERGE hll3 hll1 hll2
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis> PFCOUNT hll3
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis>

RESP2/RESP3 Reply

Simple string reply: OK.
RATE THIS PAGE
Back to top ↑