dualcache-ff 0.5.0

A wait-free, high-performance concurrent cache optimized for extreme read-to-write ratios.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::sync::Mutex;

pub static TEST_LOCK: Mutex<()> = Mutex::new(());

pub mod common;

mod it {
    mod concurrent;
    mod coverage;
    mod pressure;
    mod robust;
    mod stability;
    mod static_cache;
    mod test_hash;
    mod unsafe_spec;
    mod miri_core;
}