pub struct LruCacheLayer<C: Access> {
read_cache: ReadCache<C>,
}
Expand description
An opendal layer with local LRU file cache supporting.
Fields§
§read_cache: ReadCache<C>
Implementations§
Source§impl<C: Access> LruCacheLayer<C>
impl<C: Access> LruCacheLayer<C>
Sourcepub fn new(file_cache: Arc<C>, capacity: usize) -> Result<Self>
pub fn new(file_cache: Arc<C>, capacity: usize) -> Result<Self>
Create a LruCacheLayer
with local file cache and capacity in bytes.
Sourcepub async fn recover_cache(&self, sync: bool)
pub async fn recover_cache(&self, sync: bool)
Recovers cache
Sourcepub async fn contains_file(&self, path: &str) -> bool
pub async fn contains_file(&self, path: &str) -> bool
Returns true when the local cache contains the specific file
Sourcepub async fn read_cache_stat(&self) -> (u64, u64)
pub async fn read_cache_stat(&self) -> (u64, u64)
Returns the read cache statistics info (EntryCount, SizeInBytes)
.
Trait Implementations§
Source§impl<C: Access> Clone for LruCacheLayer<C>
impl<C: Access> Clone for LruCacheLayer<C>
Source§impl<I: Access, C: Access> Layer<I> for LruCacheLayer<C>
impl<I: Access, C: Access> Layer<I> for LruCacheLayer<C>
Source§type LayeredAccess = LruCacheAccess<I, C>
type LayeredAccess = LruCacheAccess<I, C>
The layered accessor that returned by this layer.
Auto Trait Implementations§
impl<C> Freeze for LruCacheLayer<C>
impl<C> !RefUnwindSafe for LruCacheLayer<C>
impl<C> Send for LruCacheLayer<C>
impl<C> Sync for LruCacheLayer<C>
impl<C> Unpin for LruCacheLayer<C>
impl<C> !UnwindSafe for LruCacheLayer<C>
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request