Expand description
§Expandable Cuckoo Filter
An expandable, serializable, and orthogonal Cuckoo Filter implementation.
§Features
- Expandable: Automatically grows capacity when load exceeds 80%.
- Orthogonal: Supports deterministic seeding for distributed consensus.
- Persistent: Export/Import with Zstd compression and integrity checks.
§Example
use expandable_cuckoo_filter::ExpandableCuckooFilter;
let filter = ExpandableCuckooFilter::new("my-filter", 100);
filter.insert("hello");
assert!(filter.contains("hello"));Structs§
- Expandable
Cuckoo Filter - An expandable Cuckoo Filter.