Intrusive LRU Cache
===================
[](https://crates.io/crates/intrusive-lru-cache)
[](https://docs.rs/intrusive-lru-cache)
[](./LICENSE-Apache)
This crate provides an LRU Cache implementation that is based on combining an intrusive doubly linked list and an intrusive red-black tree,
in the same node. Both data structures share the same allocations, which makes it quite efficient for a linked structure.