cuckoofilter icon indicating copy to clipboard operation
cuckoofilter copied to clipboard

Optimized implementation of Cuckoo Filter: Practically Better Than Bloom.

Results 3 cuckoofilter issues
Sort by recently updated
recently updated
newest added

Implemented by using different types for fingerprints via generics.

add the improvement to `getAltIndex` by @MeteorsLiu from their abandoned pr. simplify `getNextPow2` use a per filter rng for `randi` to avoid contention preallocate temporary read/write buffer in encode/decode pack...

github.com/seiflotfy/cuckoofilter first calculate the hash when it's in initialization. And I try this to optimize this "better" version of cuckoofilter. Test is all passed. ``` === RUN TestBucket_Reset --- PASS:...