A hash map that allows compressing the least recently used values. Useful when you need to store
a lot of large values in memory. You must define your own compression method for the value type
using the Compressible and Decompressible traits.
When immutable cache access is required, use this LocalCache to store evicted values. Then
when you get mutable cache access, call into_iter to update the cache manually.