tinylfu-cached 0.0.4

High performance, LFU based in-memory cache.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::explicit_counter_loop)]

pub mod frequency_counter;
pub mod read_buffer;
pub mod put;
pub mod async_await_put;
pub mod get;
pub mod put_get;
pub mod delete;
pub mod put_or_update;
pub mod cache_hits;
pub mod get_ref;
pub mod common;