Click or drag to resize
CMSCacheItemPriority Enumeration
Specifies the relative priority of items stored in the cache.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 12.0.0
Syntax
C#
public enum CMSCacheItemPriority
Members
  Member nameValueDescription
Low0 Cache items with this priority level are the most likely to be deleted from the cache as the server frees system memory.
Normal1 Cache items with this priority level are likely to be deleted from the cache as the server frees system memory.
High2 Cache items with this priority level are the least likely to be deleted from the cache as the server frees system memory.
NotRemovable3 The cache items with this priority level will not be automatically deleted from the cache as the server frees system memory.
See Also