Expand description
Flash-Fuzzy Core High-performance fuzzy search using Bitap algorithm with bloom filter pre-filtering
This crate is no_std compatible and provides the core search algorithms.
Re-exports§
pub use bitap::BitapSearcher;pub use bloom::BloomFilter;pub use types::*;
Modules§
- bitap
- Bitap (Shift-Or) algorithm for fuzzy string matching
- bloom
- Bloom filter for O(1) candidate rejection
- types
- Core types for Flash-Fuzzy
Constants§
- DEFAULT_
MAX_ ERRORS - Default max errors allowed
- DEFAULT_
THRESHOLD - Default threshold score (0-1000 scale)
- MAX_
PATTERN_ LEN - Maximum pattern length supported (32 characters)