This crate implements a cache with frequency-based replacement strategy as described in the paper “Data Cache Management Using Frequency-Based Replacement” by John T. Robinson and Murthy V. Devarakonda, published in ACM SIGMETRICS 1990.

The configuration parameters of such a cache are:

Example:

```rust use fbr_cache::FbrCache;

let mut cache = FbrCache::new(1000); cache.put(1, "hello"); cache.put(2, "world");

asserteq!(cache.get(&1), Some(&"hello")); asserteq!(cache.len(), 2); ```