fibre_cache 0.4.10

Best in-class comprehensive, most flexible, high-performance, concurrent multi-mode sync/async caching library for Rust. It provides a rich, ergonomic API including a runtime-agnostic CacheLoader, an atomic `entry` API, and a wide choice of modern cache policies like W-TinyLFU, SIEVE, ARC, LRU, Clock, SLRU, Random.
Documentation
1
2
3
4
5
//! Hybrid sync/async locking primitives. These now live in the `fibre`
//! (channels) crate and are re-exported here so `fibre_cache` and `fibre` share
//! one implementation. See `fibre::sync`.

pub use fibre::sync::{HybridMutex, HybridRwLock, MutexGuard, ReadGuard, WriteGuard};