pub struct InMemCacheTracker<T, F> { /* private fields */ }
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
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Scrape the references from an impl Read. Read more
Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
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