CMSCacheItemPriority Enumeration |
Specifies the relative priority of items stored in the cache.
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 12.0.0
Syntax public enum CMSCacheItemPriority
Members
| Member name | Value | Description |
---|
| Low | 0 |
Cache items with this priority level are the most likely to be deleted from the cache as the server frees system memory.
|
| Normal | 1 |
Cache items with this priority level are likely to be deleted from the cache as the server frees system memory.
|
| High | 2 |
Cache items with this priority level are the least likely to be deleted from the cache as the server frees system memory.
|
| NotRemovable | 3 |
The cache items with this priority level will not be automatically deleted from the cache as the server frees system memory.
|
See Also