-
Enhancement
-
Resolution: Unresolved
-
Optional
-
None
-
None
-
None
HyperLogLog is a specialized but highly useful data type in Redis. A HyperLogLog is used to keep an estimated count of unique items, useful data type for tracking an overall count of unique visitors to a website.
The HyperLogLog data type maintains an internal hash to determine whether it has seen the value already. If it has, then the value is not entered into the database.
(source: Redis for Dummies)
The implementation might be done by using this library: https://github.com/aggregateknowledge/java-hll
- incorporates
-
ISPN-14676 PFCOUNT
- New
-
ISPN-14677 PFDEBUG
- New
-
ISPN-14678 PFMERGE
- New
-
ISPN-14679 PFSELFTEST
- New
-
ISPN-14675 PFADD
- Resolved
- is incorporated by
-
ISPN-16567 [RESP] 15.1 Commands
- In Progress