Enumerates the priorities of a CacheItem.
Namespace: PostSharp.Patterns.Caching.Implementation
Assembly: PostSharp.Patterns.Caching.dll
Syntax
public enum CacheItemPriority
Fields
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. |