bits-and-blooms/bloom
Go package implementing Bloom filters, used by many important systems observed · 2026-08-28
Health v2 · maintenance only
69/100
- Activity 91
- Release rhythm 22
- Longevity 100
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 5583
- days_rel: 311
- days_push: 54
- n_releases_24m: 1
Adoption not part of the score
2807 stars · 260 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
A Go library implementing fast, space-efficient Bloom filters backed by a compact bitset and murmur3 hashing. It supports membership queries with no false negatives, a tunable false-positive rate, set algebra, cardinality estimation, and serialization.
Use cases
- check whether an element might be in a large set without storing the set
- avoid expensive database lookups for definitely-absent keys
- build a cache-aside layer that skips misses cheaply
- estimate the number of items added to a filter
- merge filters from multiple shards into one
- serialize a filter to disk or over the network
When to choose
- you need probabilistic set membership in Go with tunable false positives and zero false negatives
- memory is constrained and an occasional false positive is acceptable
- you need a mature, widely used Bloom filter implementation with serialization support
When to avoid
- you need exact membership answers with no false positives
- you need a dynamic structure with unknown capacity ahead of time
- you need deletion support (standard Bloom filters cannot remove items)
Facets
library · maturity stable
search-engine caching developer-tools databases performance developer-tools go cross-platform bloom-filter probabilistic-data-structures membership-query bitset murmur3 algorithms
2 sources
- readme: https://github.com/bits-and-blooms/bloom · fetched 2026-08-28 · 154273b825e5
- homepage: http://bits-and-blooms.github.io/bloom/ · fetched 2026-08-29 · 34a302ef70f7
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| bits-and-blooms/bloom | main | 69 |
For agents
markdown · JSON · MCP: product_card(name="bits-and-blooms/bloom")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem