Documentation ¶
Overview ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license ¶
Package bloomfilter is face-meltingly fast, thread-safe, marshalable, unionable, probability- and optimal-size-calculating Bloom filter in go
https://github.com/steakknife/bloomfilter
Copyright © 2014, 2015, 2018 Barry Allard ¶
MIT license
Index ¶
- Constants
- func EnableDebugging()
- func OptimalK(m, maxN uint64) uint64
- func OptimalM(maxN uint64, p float64) uint64
- func UniqueKeys(keys []uint64) bool
- type Filter
- func New(m, k uint64) (*Filter, error)
- func NewOptimal(maxN uint64, p float64) (*Filter, error)
- func NewWithKeys(m uint64, origKeys []uint64) (f *Filter, err error)
- func ReadFile(filename string) (f *Filter, n int64, err error)
- func ReadFrom(r io.Reader) (f *Filter, n int64, err error)
- func UnmarshalText(text []byte) (f *Filter, err error)
- func (f *Filter) Add(v hash.Hash64)
- func (f *Filter) Contains(v hash.Hash64) bool
- func (f *Filter) Copy() (*Filter, error)
- func (f *Filter) FalsePosititveProbability() float64
- func (f *Filter) GobDecode(data []byte) error
- func (f *Filter) GobEncode() ([]byte, error)
- func (f *Filter) IsCompatible(f2 *Filter) bool
- func (f *Filter) K() uint64
- func (f *Filter) M() uint64
- func (f *Filter) MarshalBinary() (data []byte, err error)
- func (f *Filter) MarshalText() (text []byte, err error)
- func (f *Filter) N() uint64
- func (f *Filter) NewCompatible() (*Filter, error)
- func (f *Filter) PreciseFilledRatio() float64
- func (f *Filter) ReadFrom(r io.Reader) (n int64, err error)
- func (f *Filter) Union(f2 *Filter) (out *Filter, err error)
- func (f *Filter) UnionInPlace(f2 *Filter) error
- func (f *Filter) UnmarshalBinary(data []byte) (err error)
- func (f *Filter) UnmarshalText(text []byte) error
- func (f *Filter) WriteFile(filename string) (n int64, err error)
- func (f *Filter) WriteTo(w io.Writer) (n int64, err error)
Constants ¶
const ( // MMin is the minimum Bloom filter bits count MMin = 2 // KMin is the minimum number of keys KMin = 1 // Uint64Bytes is the number of bytes in type uint64 Uint64Bytes = 8 )
Variables ¶
This section is empty.
Functions ¶
func EnableDebugging ¶
func EnableDebugging()
EnableDebugging permits debug() logging of details to stderr
func OptimalK ¶
OptimalK calculates the optimal k value for creating a new Bloom filter maxn is the maximum anticipated number of elements
Types ¶
type Filter ¶
type Filter struct {
// contains filtered or unexported fields
}
Filter is an opaque Bloom filter type
func New ¶
New Filter with CSPRNG keys
m is the size of the Bloom filter, in bits, >= 2
k is the number of random keys, >= 1
func NewOptimal ¶
NewOptimal Bloom filter with random CSPRNG keys
func NewWithKeys ¶
NewWithKeys creates a new Filter from user-supplied origKeys
func ReadFile ¶
ReadFile from filename into a lossless-compressed Bloom Filter f Suggested file extension: .bf.gz
func UnmarshalText ¶
UnmarshalText conforms to TextUnmarshaler
func (*Filter) Contains ¶
Contains tests if f contains v false: f definitely does not contain value v true: f maybe contains value v
func (*Filter) FalsePosititveProbability ¶
FalsePosititveProbability is the upper-bound probability of false positives
(1 - exp(-k*(n+0.5)/(m-1))) ** k
func (*Filter) IsCompatible ¶
IsCompatible is true if f and f2 can be Union()ed together
func (*Filter) MarshalBinary ¶
MarshalBinary converts a Filter into []bytes
func (*Filter) MarshalText ¶
MarshalText conforms to encoding.TextMarshaler
func (*Filter) N ¶
N is how many elements have been inserted (actually, how many Add()s have been performed?)
func (*Filter) NewCompatible ¶
NewCompatible Filter compatible with f
func (*Filter) PreciseFilledRatio ¶
PreciseFilledRatio is an exhaustive count # of 1's
func (*Filter) UnionInPlace ¶
UnionInPlace merges Bloom filter f2 into f
func (*Filter) UnmarshalBinary ¶
UnmarshalBinary converts []bytes into a Filter conforms to encoding.BinaryUnmarshaler
func (*Filter) UnmarshalText ¶
UnmarshalText method overwrites f with data decoded from text