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

Status

For now this is a toy project, clearly NOT suitable for production use.

Build Status

Usage

[TODO...]

License

HashLru is licensed under the MIT license.