rskit-cache 0.2.0-alpha.2

Cache abstraction with explicit store registration and local adapters
Documentation
1
2
3
4
5
6
7
8
9
10
//! In-memory cache adapter.

mod cache;
mod registration;

pub use cache::MemoryCache;
pub use registration::register_memory;

#[cfg(test)]
mod tests;