hat-trie-cache

Crates.iohat-trie-cache
lib.rshat-trie-cache
version0.1.1
created_at2024-11-06 03:41:43.873522+00
updated_at2024-11-06 03:49:12.076097+00
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
size30,596
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