efficient/cuckoofilter
None observed · 2026-08-28
Health v2 · maintenance only
32/100
- Activity 0
- Release rhythm 35
- Longevity 100
Flags: no_releases no_license
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: 4849
- days_rel: n/a
- days_push: 1755
- n_releases_24m: 0
Adoption not part of the score
1012 stars · 175 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
A C++ library implementing cuckoo filters, a space-efficient probabilistic data structure for approximate set-membership queries that supports deletion, serving as a Bloom filter replacement. It is based on cuckoo hashing and stores key fingerprints, achieving compact space at low false positive rates.
Use cases
- check if an item is probably in a set without storing the full set
- replace a Bloom filter when items need to be deleted
- build a space-efficient membership filter with low false positive rate
- track seen items in a stream with dynamic add and remove
- benchmark probabilistic filters for speed and space
When to choose
- you need deletions from an approximate membership structure without counting Bloom filter overhead
- you need low false positive rates (<3%) with compact memory usage
- you are working in C++ and want a small, benchmarked filter implementation
When to avoid
- you need exact membership answers with zero false positives
- you need a Bloom filter in another language or with bindings
- your false positive tolerance is high and a simpler Bloom filter suffices
- you need an actively maintained project with recent releases
Facets
library · maturity maintenance
search-engine caching developer-tools databases performance developer-tools cpp cross-platform windows cuckoo-filter bloom-filter probabilistic-data-structure set-membership header-only algorithms linux macos
1 source
- readme: https://github.com/efficient/cuckoofilter · fetched 2026-08-28 · b02a526896b8
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| efficient/cuckoofilter | main | 32 |
For agents
markdown · JSON · MCP: product_card(name="efficient/cuckoofilter")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem