logo
首页技术栈工具库讨论
cuckoo

cuckoo

Haskell implementation of Cuckoo filters as described in B. Fan, D.G. Anderson, M. Kaminsky, M.D. Mitzenmacher. Cuckoo Filter: Practically Better Than Bloom. In Proc. CoNEXT, 2014. Cuckoo filters are a data structure for probabilistic set membership. They support insertion, deletion, and membership queries for set elements. Membership queries may return false positive results. But queries don't return false negative results. Unlike Bloom filters, Cuckoo filters maintain an upper bound on the false positive rate that is independent of the load of the filter. However, insertion of new elements in the filter can fail. For typical configurations this probability is very small for load factors smaller than 90 percent.
由 
bruceshi2021-01-13 收录
--
推荐
不推荐
更多信息
GitHub iconlarskuhtz/cuckoo1
HACKAGE
carbal install cuckoo
查看
标签
根据用户添加的标签生成
暂无标签