Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Specifies the relative priority of items stored in the Cache object Cache

Namespace:  SharedCache.WinServiceCommon
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public enum CacheItemPriority
Visual Basic (Declaration)
Public Enumeration CacheItemPriority
Visual C++
public enum class CacheItemPriority

Members

Member nameDescription
Low
Cache items with this priority level are the most likely to be deleted from the cache as the server frees system memory.
BelowNormal
Cache items with this priority level are more likely to be deleted from the cache as the server frees system memory than items assigned a Normal priority.
Normal
Cache items with this priority level are likely to be deleted from the cache as the server frees system memory only after those items with Low or BelowNormal priority. This is the default.
AboveNormal
Cache items with this priority level are less likely to be deleted as the server frees system memory than those assigned a Normal priority.
High
Cache items with this priority level are the least likely to be deleted from the cache as the server frees system memory.
None
Do not modify anything, used upon attribute extensios.

Remarks

[Missing <remarks> documentation for "T:SharedCache.WinServiceCommon.IndexusMessage.CacheItemPriority"]

See Also