package
2.34.0
Repository: https://github.com/alicebob/miniredis.git
Documentation: pkg.go.dev

# README

This is a copy of github.com/axiomhq/hyperloglog.

# Functions

New returns a HyperLogLog Sketch with 2^14 registers (precision 14).
New14 returns a HyperLogLog Sketch with 2^14 registers (precision 14).
New16 returns a HyperLogLog Sketch with 2^16 registers (precision 16).
New16NoSparse returns a HyperLogLog Sketch with 2^16 registers (precision 16) that will not use a sparse representation.
NewNoSparse returns a HyperLogLog Sketch with 2^14 registers (precision 14) that will not use a sparse representation.

# Variables

ErrorTooShort is an error that UnmarshalBinary try to parse too short binary.

# Structs

Sketch is a HyperLogLog data-structure for the count-distinct problem, approximating the number of distinct elements in a multiset.