Enumerates the priorities of a CacheItem.
Namespace: Metalama.Patterns.Caching.Implementation
Assembly: Metalama.Patterns.Caching.Backend.dll
Syntax
[RunTimeOrCompileTime]
public enum CacheItemPriorityFields
| Name | Description |
|---|---|
| Default | Default priority means "Default" for |
| High | This cache item is removed later if the cache needs to be compacted. For MemoryCachingBackend, this is the same as Default. |
| Low | This cache item is removed earlier if the cache needs to be compacted. For MemoryCachingBackend, this is the same as Default. |
| NotRemovable | Never removed, unless explicitly required through invalidation methods. |