pyxorfilter
pyxorfilter copied to clipboard
Python bindings for xorfilter(faster and smaller than bloom and cuckoo filters)
hi! I cant install via pip for Python 3.10 ```bash $ pip install pyxorfilter ERROR: Could not find a version that satisfies the requirement pyxorfilter (from versions: none) ERROR: No...
Hi and first at all thank you for providing this python wrapper! During some tests, I noticed, that the python process hangs during populating the XOR-filter when using duplicate items....
Is there a way to serialize these filters so they can be stored? Pickle doesn't work, unfortunately. ``` >>> pickle.dump(filter, open('/tmp/test', 'wb')) Traceback (most recent call last): File "", line...
Fixes https://github.com/glitzflitz/pyxorfilter/issues/10