Struct uluru::LRUCache

source ·
pub struct LRUCache<T, const N: usize> { /* private fields */ }
Expand description

A LRU cache using a statically-sized array for storage.

LRUCache uses a fixed-capacity array for storage. It provides O(1) insertion, and O(n) lookup.

All items are stored inline within the LRUCache, so it does not impose any heap allocation or indirection. A linked list is used to record the cache order, so the items themselves do not need to be moved when the order changes. (This is important for speed if the items are large.)

§Example

use uluru::LRUCache;

struct MyValue {
    id: u32,
    name: &'static str,
}

// A cache with a capacity of three.
type MyCache = LRUCache<MyValue, 3>;

// Create an empty cache, then insert some items.
let mut cache = MyCache::default();
cache.insert(MyValue { id: 1, name: "Mercury" });
cache.insert(MyValue { id: 2, name: "Venus" });
cache.insert(MyValue { id: 3, name: "Earth" });

// Use the `find` method to retrieve an item from the cache.
// This also "touches" the item, marking it most-recently-used.
let item = cache.find(|x| x.id == 1);
assert_eq!(item.unwrap().name, "Mercury");

// If the cache is full, inserting a new item evicts the least-recently-used item:
cache.insert(MyValue { id: 4, name: "Mars" });
assert!(cache.find(|x| x.id == 2).is_none());

Implementations§

source§

impl<T, const N: usize> LRUCache<T, N>

source

pub const fn new() -> Self

Create an empty cache.

source

pub fn insert(&mut self, val: T) -> Option<T>

Insert a given key in the cache.

This item becomes the front (most-recently-used) item in the cache. If the cache is full, the back (least-recently-used) item will be removed and returned.

source

pub fn find<F>(&mut self, pred: F) -> Option<&mut T>
where F: FnMut(&T) -> bool,

Returns the first item in the cache that matches the given predicate. Touches the result (makes it most-recently-used) on a hit.

source

pub fn lookup<F, R>(&mut self, pred: F) -> Option<R>
where F: FnMut(&mut T) -> Option<R>,

Performs a lookup on the cache with the given test routine. Touches the result on a hit.

source

pub fn len(&self) -> usize

Returns the number of elements in the cache.

source

pub fn is_empty(&self) -> bool

Returns true if the cache is empty.

source

pub fn clear(&mut self)

Evict all elements from the cache.

source

pub fn front(&self) -> Option<&T>

Returns the front entry in the list (most recently used).

source

pub fn front_mut(&mut self) -> Option<&mut T>

Returns a mutable reference to the front entry in the list (most recently used).

source

pub fn get(&self, index: usize) -> Option<&T>

Returns the n-th entry in the list (most recently used).

source

pub fn touch<F>(&mut self, pred: F) -> bool
where F: FnMut(&T) -> bool,

Touches the first item in the cache that matches the given predicate (marks it as most-recently-used). Returns true on a hit, false if no matches.

source

pub fn iter(&self) -> Iter<'_, T, N>

Iterate over the contents of this cache in order from most-recently-used to least-recently-used.

Trait Implementations§

source§

impl<T: Clone, const N: usize> Clone for LRUCache<T, N>

source§

fn clone(&self) -> LRUCache<T, N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, const N: usize> Debug for LRUCache<T, N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T, const N: usize> Default for LRUCache<T, N>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T, const N: usize> Freeze for LRUCache<T, N>
where T: Freeze,

§

impl<T, const N: usize> RefUnwindSafe for LRUCache<T, N>
where T: RefUnwindSafe,

§

impl<T, const N: usize> Send for LRUCache<T, N>
where T: Send,

§

impl<T, const N: usize> Sync for LRUCache<T, N>
where T: Sync,

§

impl<T, const N: usize> Unpin for LRUCache<T, N>
where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for LRUCache<T, N>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.