Crate compressible_map

Source

Structs§

Compressed
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§

BytesCompression
A compression algorithm that acts directly on a slice of bytes.
Compression
An algorithm for compressing a specific type Data into type Compressed.