Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions content/develop/data-types/probabilistic/hyperloglogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ title: HyperLogLog
weight: 1
---

HyperLogLog is a probabilistic data structure that estimates the cardinality of a set. As a probabilistic data structure, HyperLogLog trades perfect accuracy for efficient space utilization.

The Redis HyperLogLog implementation uses up to 12 KB and provides a standard error of 0.81%.
HyperLogLog trades perfect accuracy for efficient space utilization. The Redis implementation uses up to 12 KB and provides a standard error of 0.81%.

Counting unique items usually requires an amount of memory
proportional to the number of items you want to count, because you need
Expand Down