Skip to content

Releases: nettijoe96/bloom

Alpha Release

22 Jan 04:21
Compare
Choose a tag to compare
Alpha Release Pre-release
Pre-release

First release of the package. Contains two types of Bloom filter: Bloom and BigBloom that implement the Bloomer interface. Bloom is a 64 byte bloom filter. BigBloom is a flexible sized bloom filter. Both types have constructors to create a bloom filter from k, capacity, or maxFalsePositiveRate. Additionally, BigBloom has a constructor to create a bloom filter from capacity and maxFalsePositiveRate, without specifying the length of the filter. Constructors created using capacity and maxFalsePositiveRate do not constrain on those values. Use AddCapacityConstraint and AddAccuracyConstraint to constrain the bloom filter on those constraints.

Full Changelog: https://github.com/nettijoe96/bloom/commits/v0.0.0