Bloomex.ScalableBloom
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
Summary
Types
t :: %Bloomex.ScalableBloom{error_prob: float, error_prob_ratio: float, growth: pos_integer, size: pos_integer, b: [Bloomex.Bloom.t], hash_func: (term -> pos_integer)}