[][src]Struct matecito::Matecito

pub struct Matecito<K, T>(_);

Matecito is an experimental concurrent cache. Its main purpose is to give a thread safe interface to use an in-memory storage for some expensive computations.

Example

use matecito::Matecito;

// Initialize the cache with space for 1024 objects.
let m = Matecito::<u64, String>::new(2usize.pow(10));
let m1 = m.clone();
std::thread::spawn(move || {
    m1.put(123, "asd".to_string());
    m1.put(01010101, "321".to_string());
});
// We need to give the cache a sec to populate the values.
std::thread::sleep(std::time::Duration::from_millis(1));   
assert_eq!(Some("asd".to_string()), m.get(123));

Implementations

impl<K: Clone + Ord + Hash, T: Debug + Clone> Matecito<K, T>[src]

pub fn new(num_elements: usize) -> Self[src]

pub fn put(&self, key: K, value: T) -> MatecitoResult<K>[src]

pub fn get(&self, key: K) -> Option<T>[src]

Trait Implementations

impl<K, T> Clone for Matecito<K, T>[src]

Auto Trait Implementations

impl<K, T> !RefUnwindSafe for Matecito<K, T>

impl<K, T> Send for Matecito<K, T>

impl<K, T> Sync for Matecito<K, T>

impl<K, T> Unpin for Matecito<K, T>

impl<K, T> !UnwindSafe for Matecito<K, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,