Skip to main content

dualcache_ff/static_cache/
mod.rs

1//! Static and stub cache interfaces optimized for bare-metal and ultra-constrained embedded targets.
2
3pub mod static_cache;
4pub mod stub;
5
6/// A zero-allocation, completely `alloc`-free static direct-mapped concurrent cache.
7pub use static_cache::StaticDualCache;
8
9/// A zero-overhead facade stub implementation where all operations are compiled away.
10pub use stub::DualCacheStub;