| Crates.io | hat-trie-cache |
| lib.rs | hat-trie-cache |
| version | 0.1.1 |
| created_at | 2024-11-06 03:41:43.873522+00 |
| updated_at | 2024-11-06 03:49:12.076097+00 |
| description | A high-performance HAT-trie implementation with integrated quick-cache support for concurrent operations and binary encoding capabilities |
| homepage | https://github.com/aeromilai/hat-trie-cache |
| repository | https://github.com/aeromilai/hat-trie-cache |
| max_upload_size | |
| id | 1437571 |
| size | 30,596 |
A Rust implementation of a HAT-trie based cache.
Add this to your Cargo.toml:
[dependencies]
hat-trie-cache = "0.1"
let result = hat_trie_cache::add(40, 2);
assert_eq!(result, 42);
For more examples, see the examples directory.
cargo run --example basic