cuckoopy
cuckoopy copied to clipboard
Python implementation of Cuckoo Filter data structure
Results
2
cuckoopy issues
Sort by
recently updated
recently updated
newest added
I think there is an error in the implementation, which makes elements sometimes disappear. The following code: ``` from cuckoopy import CuckooFilter from random import * from typing import *...
thanks for creating the library. i've been using a bloom filter, but need the ability to delete items. how would you recommend saving the filter to disk to preserve state...