Module scc::hash_cache
source · Expand description
Structs§
- Scalable concurrent 32-way associative cache backed by
HashMap
. OccupiedEntry
is a view into an occupied cache entry in aHashCache
.VacantEntry
is a view into a vacant cache entry in aHashCache
.
Enums§
Constants§
- The default maximum capacity of a
HashCache
is256
.
Type Aliases§
EvictedEntry
is a type alias forOption<(K, V)>
.