Struct ipfs_sqlite_block_store::cache::InMemCacheTracker [−][src]
pub struct InMemCacheTracker<T, F> { /* fields omitted */ }Expand description
keep track of block accesses in memory
Implementations
mk_cache_entry will be called on each block access to create or update a cache entry. It allows to customize whether we are interested in an entry at all, and what entries we want to be preserved.
E.g. to just sort entries by their access time, use |access, _, _| Some(access).
this will keep entries in the cache based on last access time.
It is also possible to use more sophisticated strategies like only caching certain cid types or caching based on the data size.
Trait Implementations
called whenever blocks were accessed
notification that these ids no longer have to be tracked
notification that only these ids should be retained
sort ids by importance. More important ids should go to the end.
indicate whether retain_ids should be called on startup
called whenever blocks were written Read more
Auto Trait Implementations
impl<T, F> !RefUnwindSafe for InMemCacheTracker<T, F>
impl<T, F> Send for InMemCacheTracker<T, F> where
F: Send,
T: Send,
impl<T, F> Sync for InMemCacheTracker<T, F> where
F: Sync,
T: Send,
impl<T, F> Unpin for InMemCacheTracker<T, F> where
F: Unpin,
impl<T, F> !UnwindSafe for InMemCacheTracker<T, F>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
