dualcache-ff 0.2.3

A wait-free, high-performance concurrent cache optimized for extreme read-to-write ratios.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Static and stub cache interfaces optimized for bare-metal and ultra-constrained embedded targets.

pub mod static_cache;
pub mod stub;

/// A zero-allocation, completely `alloc`-free static direct-mapped concurrent cache.
pub use static_cache::StaticDualCache;

/// A zero-overhead facade stub implementation where all operations are compiled away.
pub use stub::DualCacheStub;