Type Alias DataCache

Source
pub type DataCache = Arc<Mutex<HashMap<Hash, (i64, Data)>>>;
Expand description

Type for lazy-loading data cache

hash -> (access time, data)

Aliased Typeยง

struct DataCache { /* private fields */ }