pub struct FallbackCache<Primary, Fallback> { /* private fields */ }
Expand description
FallbackCache
is a combinator for the ModuleCache
trait that enables
the chaining of two caching strategies together, typically via
ModuleCache::with_fallback()
.
All operations are attempted using primary cache first, and if that fails,
falls back to using the fallback cache. By chaining different caches
together with FallbackCache
, you can create a caching hierarchy tailored
to your application’s specific needs, balancing performance, resource usage,
and persistence.
A key assumption of FallbackCache
is that all operations on the
fallback implementation will be significantly slower than the primary one.
§Cache Promotion
Whenever there is a cache miss on the primary cache and the fallback is able to load a module, that module is automatically added to the primary cache to improve the speed of future lookups.
This “cache promotion” strategy helps keep frequently accessed modules in the faster primary cache.
Implementations§
Source§impl<Primary, Fallback> FallbackCache<Primary, Fallback>
impl<Primary, Fallback> FallbackCache<Primary, Fallback>
pub fn primary(&self) -> &Primary
pub fn primary_mut(&mut self) -> &mut Primary
pub fn fallback(&self) -> &Fallback
pub fn fallback_mut(&mut self) -> &mut Fallback
pub fn into_inner(self) -> (Primary, Fallback)
Trait Implementations§
Source§impl<Primary: Clone, Fallback: Clone> Clone for FallbackCache<Primary, Fallback>
impl<Primary: Clone, Fallback: Clone> Clone for FallbackCache<Primary, Fallback>
Source§fn clone(&self) -> FallbackCache<Primary, Fallback>
fn clone(&self) -> FallbackCache<Primary, Fallback>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<Primary, Fallback> ModuleCache for FallbackCache<Primary, Fallback>
impl<Primary, Fallback> ModuleCache for FallbackCache<Primary, Fallback>
Source§fn load<'life0, 'life1, 'async_trait>(
&'life0 self,
key: ModuleHash,
engine: &'life1 Engine,
) -> Pin<Box<dyn Future<Output = Result<Module, CacheError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load<'life0, 'life1, 'async_trait>(
&'life0 self,
key: ModuleHash,
engine: &'life1 Engine,
) -> Pin<Box<dyn Future<Output = Result<Module, CacheError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Source§fn save<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
key: ModuleHash,
engine: &'life1 Engine,
module: &'life2 Module,
) -> Pin<Box<dyn Future<Output = Result<(), CacheError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn save<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
key: ModuleHash,
engine: &'life1 Engine,
module: &'life2 Module,
) -> Pin<Box<dyn Future<Output = Result<(), CacheError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
ModuleCache::load()
at a
later time. Read moreSource§fn with_fallback<C>(self, other: C) -> FallbackCache<Self, C>where
Self: Sized,
C: ModuleCache,
fn with_fallback<C>(self, other: C) -> FallbackCache<Self, C>where
Self: Sized,
C: ModuleCache,
ModuleCache
that will be used as a fallback if
lookups on the primary cache fail. Read moreSource§impl<Primary: PartialEq, Fallback: PartialEq> PartialEq for FallbackCache<Primary, Fallback>
impl<Primary: PartialEq, Fallback: PartialEq> PartialEq for FallbackCache<Primary, Fallback>
Source§fn eq(&self, other: &FallbackCache<Primary, Fallback>) -> bool
fn eq(&self, other: &FallbackCache<Primary, Fallback>) -> bool
self
and other
values to be equal, and is used by ==
.impl<Primary: Eq, Fallback: Eq> Eq for FallbackCache<Primary, Fallback>
impl<Primary, Fallback> StructuralPartialEq for FallbackCache<Primary, Fallback>
Auto Trait Implementations§
impl<Primary, Fallback> Freeze for FallbackCache<Primary, Fallback>
impl<Primary, Fallback> RefUnwindSafe for FallbackCache<Primary, Fallback>where
Primary: RefUnwindSafe,
Fallback: RefUnwindSafe,
impl<Primary, Fallback> Send for FallbackCache<Primary, Fallback>
impl<Primary, Fallback> Sync for FallbackCache<Primary, Fallback>
impl<Primary, Fallback> Unpin for FallbackCache<Primary, Fallback>
impl<Primary, Fallback> UnwindSafe for FallbackCache<Primary, Fallback>where
Primary: UnwindSafe,
Fallback: UnwindSafe,
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more