[][src]Crate hashlru

HashLru is an experimental LRU cache implemented in Rust.

It tries to follow the API exposed by a standard Rust HashMap while enforcing a limited memory footprint by limiting the nunber of keys using the LRU strategy, which is a quite common cache replacement policy.

HashLru icon

Structs

HashLru

An LRU cache which aims at being a drop-in replacement for a hash map.

Iter