ezcache::stores::file_stores

Struct ThreadSafeFileStore

Source
pub struct ThreadSafeFileStore<K, V> { /* private fields */ }
Expand description

Thread safe store based on files

Implementations§

Source§

impl<K: CustomHash, V> ThreadSafeFileStore<K, V>

Source

pub fn new_on(path: impl AsRef<Path> + TryInto<PathBuf>) -> Result<Self>

Makes a new instance from a directory path Doesn’t perform any file lock, you must ensure this path isn’t used by other processes or even this one itself.

§Errors

Fails when any underlying io call does.

Trait Implementations§

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

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

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

Exclusive lock over a wey.
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_exists( &'lock self, handle: &Self::SLock<'_>, ) -> Result<bool, Self::Error>

Attempts to check if the cache key entry exists.
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.
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

Auto Trait Implementations§

§

impl<K, V> !Freeze for ThreadSafeFileStore<K, V>

§

impl<K, V> RefUnwindSafe for ThreadSafeFileStore<K, V>
where V: RefUnwindSafe,

§

impl<K, V> Send for ThreadSafeFileStore<K, V>
where V: Send, K: Send,

§

impl<K, V> Sync for ThreadSafeFileStore<K, V>
where V: Sync, K: Send,

§

impl<K, V> Unpin for ThreadSafeFileStore<K, V>
where V: Unpin, K: Unpin,

§

impl<K, V> UnwindSafe for ThreadSafeFileStore<K, V>
where V: 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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.