redis/pfadd

HyperLogLog Add

Estimate unique values

hyperloglog
probabilistic

Command

PFADD key element

Explanation

Adds elements to a HyperLogLog data structure for approximate unique count estimation.

Examples

Add users

PFADD visitors "user1" "user2"