gyson / hll

Redis compatible HyperLogLog implementation in Elixir

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HLL

Redis compatible HyperLogLog implementation in Elixir.

This library uses algorithms from following papers:

The HLL.Redis module is Redis (v5) compatible. It uses the same hash algorithm, same HyperLogLog estimation algorithm and same binary format as Redis (v5) does. Therefore, it could consume HyperLogLog sketches from Redis and it could generate HyperLogLog sketches for Redis as well.

Features

  • HyperLogLog operations (add, merge, cardinality)
  • Redis compatible (use HLL.Redis module)
  • Serialization

Installation

The package can be installed by adding hll to your list of dependencies in mix.exs:

def deps do
  [
    {:hll, "~> 0.1"}
  ]
end

Documentation can be found at https://hexdocs.pm/hll.

HLL vs HLL.Redis

This library provides two different HyperLogLog modules, HLL and HLL.Redis.

Similarity

Difference

  • HLL.Redis is Redis (v5) compatible (same hash fucntion, same cardinality estimation algorithm, same serialization format). HLL is NOT Redis compatible.
  • HLL uses :erlang.phash2 (in native code) as hash function, which is faster than the HLL.Redis's hash function (written in Elixir).
  • HLL's serialization format is closer to HLL internal data structure, which makes encode and decode generally faster than HLL.Redis's Redis binary format.

Therefore, if you do not require "Redis compatible", it's recommanded to use HLL module for performance gain.

License

MIT

About

Redis compatible HyperLogLog implementation in Elixir

License:MIT License


Languages

Language:Elixir 100.0%