MetalamaAPI documentationPatterns APIMetalama.​Patterns.​Caching.​ImplementationICache­Item­Configuration
Open sandboxFocus

ICacheItemConfiguration Interface

Configuration of a cached method determined at compile time.

Namespace: Metalama.Patterns.Caching.Implementation
Assembly: Metalama.Patterns.Caching.Backend.dll
Syntax
[RunTimeOrCompileTime]
public interface ICacheItemConfiguration

Properties

Name Description
AbsoluteExpiration

Gets the total duration during which the result of the cached methods is stored in cache. The absolute expiration time is counted from the moment the method is evaluated and cached.

AutoReload

Gets a value indicating whether the method calls are automatically reloaded (by re-evaluating the target method with the same arguments) when the cache item is removed from the cache.

IsEnabled

Gets a value indicating whether caching is enabled.

Priority

Gets the priority of the cached method.

ProfileName

Gets the name of the caching profile that contains the configuration of the cached methods.

SlidingExpiration

Gets the duration during which the result of the cached methods is stored in cache after it has been added to or accessed from the cache. The expiration is extended every time the value is accessed from the cache.