pub struct MemoryCacheSuggester {
    inner: Box<dyn SuggestionProvider>,
    metrics_client: StatsdClient,
    items: Arc<DedupedMap<String, Instant, Vec<Suggestion>>>,
    default_ttl: Duration,
    default_lock_timeout: Duration,
    max_background_removals: usize,
}
Expand description

A in-memory cache for suggestions.

Fields

inner: Box<dyn SuggestionProvider>

The suggester to query on cache-miss.

metrics_client: StatsdClient

The Statsd client used to record statistics.

items: Arc<DedupedMap<String, Instant, Vec<Suggestion>>>

The cached items.

default_ttl: Duration

TTL to apply to items if the underlying provider does not give one.

default_lock_timeout: Duration

TTL for locks on cache refresh updates

max_background_removals: usize

Maximum number of entries to remove in a single background expiration iteration.

Implementations

Create a in-memory suggestion cache from settings that wraps provider.

Remove expired entries from items

It is often useful to have access to most of the fields on this object, but providers are not generally cloneable, so self.inner cannot be cloned.

Introducing an Arc around inner complicates things, but the situations where we want clones of this object don’t need the inner provider. So perform a partial clone that clones most fields, replacing the provider with a dummy value.

Trait Implementations

An operator-visible name for this suggestion provider.

Generate a set of cache inputs for a given query specific to this provider. Any property of the query that affects how suggestions are generated should be included. Read more

Provide suggested results for query.

Reconfigure the provider, using a new configuration object. State should be preserved if possible. Read more

Return if this provider is null and can be ignored. Providers that set this to true should be ignored in any place where suggestions are needed. Providers with this set to true likely only serve as a blank space where we may need a provider but can’t otherwise supply one. Read more

Use Self::cache_inputs to generate a single cache key. This function should not normally be overridden by provider implementations. 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

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.

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

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