seiflotfy/cuckoofilter
Cuckoo Filter: Practically Better Than Bloom observed · 2026-08-28
Health v2 · maintenance only
32/100
- Activity 0
- Release rhythm 35
- Longevity 100
Flags: no_releases
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 4084
- days_rel: n/a
- days_push: 779
- n_releases_24m: 0
Adoption not part of the score
1233 stars · 120 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
A Go library implementing cuckoo filters, a space-efficient probabilistic data structure for approximate set-membership queries that supports insertion, lookup, and deletion. It serves as a Bloom filter replacement with comparable or better space efficiency at low false positive rates (~3% with 8-bit fingerprints).
Use cases
- check if an item is probably in a set without storing the whole set
- replace a bloom filter when I also need to delete items
- build a space-efficient cache membership check
- filter duplicate items in a stream with low memory
- implement approximate set membership with low false positive rate
When to choose
- you need deletion support that Bloom filters lack
- you want a low false positive rate (<3%) with compact memory usage
- you are working in Go and need a well-tested probabilistic filter
When to avoid
- you need exact membership answers with zero false positives
- you need very low false positive rates below 0.01% without tuning fingerprint size
- your workload is write-heavy with frequent deletions that could trigger cuckoo eviction failures
Facets
library · maturity stable
search-engine caching developer-tools databases performance developer-tools go cross-platform bloom-filter probabilistic-data-structures cuckoo-hashing set-membership fingerprinting algorithms
1 source
- readme: https://github.com/seiflotfy/cuckoofilter · fetched 2026-08-28 · ccc84bdd97d0
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| seiflotfy/cuckoofilter | main | 32 |
For agents
markdown · JSON · MCP: product_card(name="seiflotfy/cuckoofilter")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem