hat-trie-cache

Crates.iohat-trie-cache
lib.rshat-trie-cache
version
sourcesrc
created_at2024-11-06 03:41:43.873522
updated_at2024-11-06 03:49:12.076097
descriptionA high-performance HAT-trie implementation with integrated quick-cache support for concurrent operations and binary encoding capabilities
homepagehttps://github.com/aeromilai/hat-trie-cache
repositoryhttps://github.com/aeromilai/hat-trie-cache
max_upload_size
id1437571
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`
size0
Kol Influence (kolinfluence)

documentation

https://docs.rs/hat-trie-cache

README

hat-trie-cache

A Rust implementation of a HAT-trie based cache.

Usage

Add this to your Cargo.toml:

[dependencies]
hat-trie-cache = "0.1"

Example

let result = hat_trie_cache::add(40, 2);
assert_eq!(result, 42);

For more examples, see the examples directory.

Running Examples

cargo run --example basic
Commit count: 13

cargo fmt