Versions in this module Expand all Collapse all v1 v1.4.0 May 26, 2021 Changes in this version + var ErrNoBloomfilterInitialized = fmt.Errorf("Bloomfilter not initialized") + type AddInput struct + Elems [][]byte + type AddOutput struct + Count int + type Bloomfilter struct + func New(ctx context.Context, cfg Config) *Bloomfilter + func (b *Bloomfilter) Bloomfilter() *rotate.Bloomfilter + func (b *Bloomfilter) Close() + type BloomfilterRPC int + func (b *BloomfilterRPC) Add(in AddInput, out *AddOutput) error + func (b *BloomfilterRPC) Check(in CheckInput, out *CheckOutput) error + func (b *BloomfilterRPC) Union(in UnionInput, out *UnionOutput) error + type CheckInput struct + Elems [][]byte + type CheckOutput struct + Checks []bool + type Config struct + Port int + type UnionInput struct + BF *rotate.Bloomfilter + type UnionOutput struct + Capacity float64 Other modules containing this package github.com/devopsfaith/bloomfilter/v2