https://github.com/blocknative/bloom
High-performance Bloom filters in pure Go.
https://github.com/blocknative/bloom
Last synced: 3 months ago
JSON representation
High-performance Bloom filters in pure Go.
- Host: GitHub
- URL: https://github.com/blocknative/bloom
- Owner: blocknative
- License: mit
- Fork: true (zentures/bloom)
- Created: 2022-04-19T18:35:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-19T22:34:14.000Z (about 4 years ago)
- Last Synced: 2025-05-07T04:38:01.200Z (12 months ago)
- Language: Go
- Homepage: http://zhen.org/blog/benchmarking-bloom-filters-and-hash-functions-in-go/
- Size: 2.6 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
bloom
=====
A set of bloom filter implementations, forked from [zentures](https://github.com/zentures/bloom) due to inactivity.
[](https://godoc.org/github.com/blocknative/bloom)
[](https://goreportcard.com/report/github.com/blocknative/bloom)
[](https://github.com/blocknative/bloom/actions/workflows/go.yml)
Package `bloom` currently supports:
* Optimized bloom filters (hash-partitioned arrays)
* Scalable Bloom Filters
Additional information regarding benchmarks is [here](http://zhen.org/blog/benchmarking-bloom-filters-and-hash-functions-in-go/).
For examples, take a look at the *_test.go files in each of the directories.