Bloomex v1.0.5 Bloomex.ScalableBloom View Source

A scalable bloom filter.

  • :error_prob - error probability
  • :error_prob_ratio - error probability ratio
  • :growth - log 2 of growth ratio
  • :size - number of elements
  • :b - list of plain bloom filters
  • :hash_func - hash function to use

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Bloomex.ScalableBloom{
  b: [Bloomex.Bloom.t()],
  error_prob: number(),
  error_prob_ratio: number(),
  growth: integer(),
  hash_func: Bloomex.hash_func(),
  size: integer()
}