cuckoo-filter
cuckoo-filter copied to clipboard
Cuckoo Filter go implement, better than Bloom Filter, configurable and space optimized 布谷鸟过滤器的Go实现,优于布隆过滤器,可以定制化过滤器参数,并进行了空间优化
我这里编写了针对cuckoo-filter的性能测试工具,可以给cuckoo-filter提供数据支持,[github.com/GuoxinL/cuckoo-efficiency](https://github.com/GuoxinL/cuckoo-efficiency),也希望可以有时间一起讨论一下关于cuckoo过滤器的性能问题
This commit improves encoding by enabling the handling of number of items and buckets exceeding max(uint32). Formerly, the encoding used uint32 for counts, but the filter structure already supported larger...
大佬,请问 我初始化的时候 cuckooFilter := cuckoo.NewFilter(4, 32, 102400000, cuckoo.TableTypePacked) 第三个参数,num of keys that filter will store ,如果我这里是 无符号64位整数个(理论上是uint64的最大值),应该怎么设置 ? 期待您的回复。