An open API service indexing awesome lists of open source software.

https://github.com/servo/uluru

A simple, fast, LRU cache implementation.
https://github.com/servo/uluru

Last synced: about 1 year ago
JSON representation

A simple, fast, LRU cache implementation.

Awesome Lists containing this project

README

          

# uluru

A simple, fast, least-recently-used (LRU) cache implementation used for
Servo's style system.

`LRUCache` uses a fixed-capacity array for storage. It provides `O(1)`
insertion, and `O(n)` lookup. It does not require an allocator and can be
used in `no_std` crates. It is implemented in 100% safe Rust.

* [Documentation](https://docs.rs/uluru)
* [crates.io](https://crates.io/crates/uluru)
* [Release notes](https://github.com/servo/uluru/releases)