Redis::Commands::HyperLogLog
Instance methods
Add all of the values to the HyperLogLog stored at key.
Return the estimated number of items in the HyperLogLogs specified at keys.
WARNING: In the Redis server, PFCOUNT is implemented differently depending on whether you supply 1 key or multiple keys — using multiple keys is significantly slower so it should not occur in a hot loop. See the official documentation for more details.
Return the estimated number of items in the HyperLogLogs specified at keys.
WARNING: In the Redis server, PFCOUNT is implemented differently depending on whether you supply 1 key or multiple keys — using multiple keys is significantly slower so it should not occur in a hot loop. See the official documentation for more details.
Merge one or more HyperLogLogs specified by source_keys into the
destination_key.
Merge one or more HyperLogLogs specified by source_keys into the
destination_key.