skp-cache-storage 0.1.0

Storage backends for skp-cache
Documentation
1
2
3
4
5
6
7
8
9
//! In-memory cache backend

mod backend;
mod bloom;
mod ttl_index;

pub use backend::{MemoryBackend, MemoryConfig};
pub use bloom::BloomFilter;