Expand description
Caching utilities
Structs§
- Block
- Cached block
- Cache
Stats - Cache statistics
- Index
Cache - Simple cache implemented with a
Vec<RwLock<Block>>
, with the key determined by the position modulo the size. - LRUCache
- Least Recently Used (LRU) cache, with one slot for every possible block, each protected by a
RwLock
.
Enums§
Traits§
- Data
Block Cache - Block cache trait