[][src]Crate compressible_map

Structs

CompressibleMap

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.

LocalCache

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.

Enums

MaybeCompressed

Traits

Compressible

A type that's compressible using algorithm A.

Decompressible

A type that's decompressible using the inverse of algorithm A.