Crates.io | hat-trie-cache |
lib.rs | hat-trie-cache |
version | |
source | src |
created_at | 2024-11-06 03:41:43.873522 |
updated_at | 2024-11-06 03:49:12.076097 |
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 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
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