ezcache::thread_safe

Trait ThreadSafeTryCacheStore

Source
pub trait ThreadSafeTryCacheStore<'lock>
where Self: 'lock,
{ type Key; type Value; type SLock<'guard>: From<&'guard Self::XLock> where 'lock: 'guard; type XLock: 'lock; type Error; // Required methods fn ts_try_get( &'lock self, handle: &Self::SLock<'_>, ) -> Result<Option<Self::Value>, Self::Error>; fn ts_try_set( &'lock self, handle: &mut Self::XLock, value: &Self::Value, ) -> Result<(), Self::Error>; fn ts_try_xlock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::XLock, Self::Error>; fn ts_try_slock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::SLock<'lock>, Self::Error>; fn ts_try_xlock_nblock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::XLock, Self::Error>; fn ts_try_slock_nblock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::SLock<'lock>, Self::Error>; // Provided methods fn ts_try_exists( &'lock self, handle: &Self::SLock<'_>, ) -> Result<bool, Self::Error> { ... } fn ts_one_try_get( &'lock self, key: &'lock Self::Key, ) -> Result<Option<Self::Value>, Self::Error> { ... } fn ts_one_try_set( &'lock self, key: &'lock Self::Key, value: &Self::Value, ) -> Result<(), Self::Error> { ... } fn ts_one_try_exists( &'lock self, key: &'lock Self::Key, ) -> Result<bool, Self::Error> { ... } }
Expand description

Trait for a thread safe fallible cache store, analogous to []

Required Associated Types§

Source

type Key

Source

type Value

Source

type SLock<'guard>: From<&'guard Self::XLock> where 'lock: 'guard

Shared lock over a key, must be possible to make one by borrowing a exclusive lock.

Source

type XLock: 'lock

Exclusive lock over a wey.

Source

type Error

Required Methods§

Source

fn ts_try_get( &'lock self, handle: &Self::SLock<'_>, ) -> Result<Option<Self::Value>, Self::Error>

Attempts to return an option of the owned cache element if present.

Source

fn ts_try_set( &'lock self, handle: &mut Self::XLock, value: &Self::Value, ) -> Result<(), Self::Error>

Attempts to set a value given its key.

Source

fn ts_try_xlock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::XLock, Self::Error>

Attempt to exclusively lock a key until the handle is dropped.

Source

fn ts_try_slock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::SLock<'lock>, Self::Error>

Attempt to acquire a shared lock of a key until the handle is dropped.

Source

fn ts_try_xlock_nblock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::XLock, Self::Error>

Attempt to exclusively lock a key until the handle is dropped. Non block.

Source

fn ts_try_slock_nblock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::SLock<'lock>, Self::Error>

Attempt to acquire a shared lock of a key until the handle is dropped. Non block.

Provided Methods§

Source

fn ts_try_exists( &'lock self, handle: &Self::SLock<'_>, ) -> Result<bool, Self::Error>

Attempts to check if the cache key entry exists.

Source

fn ts_one_try_get( &'lock self, key: &'lock Self::Key, ) -> Result<Option<Self::Value>, Self::Error>

Same as ts_get but it performs a one-time lock

Source

fn ts_one_try_set( &'lock self, key: &'lock Self::Key, value: &Self::Value, ) -> Result<(), Self::Error>

Same as ts_set but it performs a one-time lock

Source

fn ts_one_try_exists( &'lock self, key: &'lock Self::Key, ) -> Result<bool, Self::Error>

Same as ts_exists but it performs a one-time lock

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'lock, K, V, E, A, StErr: Into<E> + 'lock, FnErr: Into<E> + 'lock, S, F: Fn(&K, A) -> Result<V, FnErr> + 'lock> ThreadSafeTryCacheStore<'lock> for ThreadSafeGenTryCacheStoreWrapper<'lock, K, V, E, A, StErr, FnErr, S, F>
where S: ThreadSafeTryCacheStore<'lock> + ThreadSafeTryCacheStore<'lock, Key = K, Value = V, Error = StErr>,

Source§

type Key = <S as ThreadSafeTryCacheStore<'lock>>::Key

Source§

type Value = <S as ThreadSafeTryCacheStore<'lock>>::Value

Source§

type SLock<'guard> = <S as ThreadSafeTryCacheStore<'lock>>::SLock<'guard> where 'lock: 'guard

Source§

type XLock = <S as ThreadSafeTryCacheStore<'lock>>::XLock

Source§

type Error = <S as ThreadSafeTryCacheStore<'lock>>::Error

Source§

impl<'lock, K, V, E, S> ThreadSafeTryCacheStore<'lock> for DumbTryThreadSafeWrapper<'lock, K, V, E, S>
where Self: 'lock, S: TryCacheStore<Key = K, Value = V, Error = E> + 'lock, E: From<PoisonError<RwLockReadGuard<'lock, S>>> + From<PoisonError<RwLockWriteGuard<'lock, S>>> + From<TryLockError<RwLockReadGuard<'lock, S>>> + From<TryLockError<RwLockWriteGuard<'lock, S>>>,

Source§

type Key = K

Source§

type Value = V

Source§

type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, S, <DumbTryThreadSafeWrapper<'lock, K, V, E, S> as ThreadSafeTryCacheStore<'lock>>::Key> where 'lock: 'guard

Source§

type XLock = (RwLockWriteGuard<'lock, S>, &'lock <DumbTryThreadSafeWrapper<'lock, K, V, E, S> as ThreadSafeTryCacheStore<'lock>>::Key)

Source§

type Error = E

Source§

impl<'lock, K, V, SL: for<'b> From<&'b XL> + 'lock, XL: 'lock, T: ThreadSafeCacheStore<'lock, Key = K, Value = V, SLock<'lock> = SL, XLock = XL>> ThreadSafeTryCacheStore<'lock> for T

Blanket implementation to allow a ThreadSafeCacheStore to behave as a ThreadSafeTryCacheStore

Source§

type Key = K

Source§

type Value = V

Source§

type SLock<'guard> = SL where 'lock: 'guard

Source§

type XLock = XL

Source§

type Error = ()

Source§

impl<'lock, K: Clone + Hash + Eq + CustomHash, V: Clone + AsRef<[u8]> + From<Vec<u8>>> ThreadSafeTryCacheStore<'lock> for ThreadSafeFileStore<K, V>
where Self: 'lock,

Source§

type Key = K

Source§

type Value = V

Source§

type Error = ThreadSafeFileStoreError

Source§

type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, (), K> where 'lock: 'guard

Source§

type XLock = (RwLockWriteGuard<'lock, ()>, &'lock K)

Source§

impl<'lock, K: Clone + Hash + Eq + CustomHash, V: Clone + Serialize + DeserializeOwned> ThreadSafeTryCacheStore<'lock> for ThreadSafeFileStoreSerializable<K, V>
where Self: 'lock,

Source§

type Key = K

Source§

type Value = V

Source§

type Error = ThreadSafeFileStoreError

Source§

type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, (), K> where 'lock: 'guard

Source§

type XLock = (RwLockWriteGuard<'lock, ()>, &'lock K)

Source§

impl<'lock, K: Hash + Eq + Sized + Clone, V: Clone> ThreadSafeTryCacheStore<'lock> for ThreadSafeMemoryStore<K, V>
where Self: 'lock,

Source§

type Key = K

Source§

type Value = V

Source§

type Error = EmptyDumbError

Source§

type SLock<'guard> = RwLockAnyGuard<'lock, 'guard, Option<V>> where 'lock: 'guard

Source§

type XLock = RwLockWriteGuard<'lock, Option<V>>