rskit-cache 0.1.0-alpha.1

Cache abstraction with explicit store registration and local adapters
Documentation
1
2
3
4
5
6
7
8
//! Built-in cache adapters.

/// In-memory cache adapter.
pub mod memory;

/// Filesystem cache adapter.
#[cfg(feature = "fs")]
pub mod fs;