Skip to content

Commit f449822

Browse files
authored
Fix Redis HyperLogLog resources typo (#9905)
1 parent 4e09326 commit f449822

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/data/roadmaps/redis/content/hyperloglog@cszjT3YK8oyhGpqLTQzwX.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
HyperLogLog is a probabilistic data structure in Redis used for efficiently estimating the cardinality (i.e., the number of unique elements) of large datasets with minimal memory usage. Instead of storing the actual elements, it maintains a compressed representation, allowing it to estimate cardinality with a typical error rate of only 0.81%. Commands like `PFADD`, `PFCOUNT`, and `PFMERGE` are used to add elements, get the count, and merge HyperLogLogs, respectively. This structure is ideal for applications like unique visitor tracking or counting events where exact counts are not required but low memory consumption is critical.
44

5-
Learn more from the following resouces:
5+
Learn more from the following resources:
66

77
- [@official@HyperLogLog Documentation](https://redis.io/docs/latest/develop/data-types/probabilistic/hyperloglogs/)
8-
- [@video@Redis HyperLogLog Explained](https://www.youtube.com/watch?v=MunL8nnwscQ)
8+
- [@video@Redis HyperLogLog Explained](https://www.youtube.com/watch?v=MunL8nnwscQ)

0 commit comments

Comments
 (0)