Header menu logo fantomas

EvictionMode Type

Union cases

Union case Description

Immediate

Full Usage: Immediate

Evict items immediately on the caller's thread when adding a new item that would exceed capacity.

MailboxProcessor

Full Usage: MailboxProcessor

Evict items in the background using a MailboxProcessor to queue eviction requests. This may lag behind during heavy load but avoids blocking callers.

NoEviction

Full Usage: NoEviction

Do not evict items, cache is effectively a ConcurrentDictionary.

Instance members

Instance member Description

this.IsImmediate

Full Usage: this.IsImmediate

Returns: bool
Returns: bool

this.IsMailboxProcessor

Full Usage: this.IsMailboxProcessor

Returns: bool
Returns: bool

this.IsNoEviction

Full Usage: this.IsNoEviction

Returns: bool
Returns: bool

Type something to start searching.