You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 20, 2024. It is now read-only.
Repo seemed to be a little messy in general: some models not documented, models missing common features found in other models, unhandled errors and use of unsafe (impressions from the time I wrote feedloggr v3 and first found BoomFilters)
Might want to try to implement a Stable Scalable Bloom filter myself instead:
Stable Bloom won't keep growing forever (sort of deletes items from itself to stay with a fixed size)
Easier to track, verify and document correctness
Performance less relevant vs correctness
One less unknown dependency
Or there might be another filter model that fits better? Some kind of Cuckoo filter?
Think I found the original paper for a scalable bloom filter though, doi:10.1016/j.ipl.2006.10.007
Currently using a Scalable bloom filter from
github.com/tylertreat/BoomFiltersbut suspect it might not be performing optimally/correctly?cellsdoesn't seem to fit with optimal amount (see above)unsafe(impressions from the time I wrote feedloggr v3 and first foundBoomFilters)Might want to try to implement a
StableScalable Bloom filter myself instead:Or there might be another filter model that fits better? Some kind of Cuckoo filter?
Think I found the original paper for a scalable bloom filter though, doi:10.1016/j.ipl.2006.10.007
Investigate:
References: