This is a generic fuzzy and compact Trie implementation focused on: * Small memory footprint. * Efficient caching.
Trie is keyed by lists of type K
, which can be anything satisfying the KeyPrefix
and Clone
traits.
This structure is thought to be used in some particular scenarios where: * The keys prefixes are string based and highly repeating. * The volume of keys to store is not very big. * A fuzzy and customizable key matching strategy is needed.
For more information, see the API documentation.
Add fr-trie
to your Cargo.toml
.
toml
[dependencies]
fr-trie = "*"
Licensed under MIT license