memory-cache-rust 0.1.0-alpha

memory-cache is a fast, concurrent cache library built with a focus on performance and correctness. The motivation to build Ristretto comes from the need for a contention-free cache in
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod bloom;
mod store;
mod reclaim;
mod ttl;
pub mod cache;
mod policy;
mod cmsketch;
mod ring;

/// Default hasher for [`HashMap`].
pub type DefaultHashBuilder = ahash::RandomState;


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}