4 releases
0.4.3 | Sep 27, 2024 |
---|---|
0.4.2 | Sep 18, 2023 |
0.4.1 | Aug 8, 2023 |
0.3.0 |
|
0.1.0 | Jul 12, 2022 |
#1603 in Data structures
69 downloads per month
57KB
1K
SLoC
fqdn-trie
This crate provides two data structures based on FQDN tries in order to provide very fast lookup in the FQDN hierarchy.
The trie implementation is optimized to FQDN context and follows these rules:
- the search algorithm finds the longuest domain suffix
- the algorithm is case-insensitive
- the internal structure exploits the range of allowed characters in FQDN
lib.rs
:
This crate provides two data structures based on FQDN tries in order to provide very fast lookup in the FQDN hierarchy.
The trie implementation is optimized to FQDN context and follows these rules:
- the search algorithm finds the longuest domain suffix
- the algorithm is case-insensitive
- the internal structure exploits the range of allowed characters in FQDN