Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Service Cache CleanUp Pattern options

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

Syntax

C#
[SerializableAttribute]
public enum ServiceCacheCleanUp
Visual Basic (Declaration)
<SerializableAttribute> _
Public Enumeration ServiceCacheCleanUp
Visual C++
[SerializableAttribute]
public enum class ServiceCacheCleanUp

Members

Member nameDescription
CACHEITEMPRIORITY
Depends on the item priority the items will stay longer in cache, default is Normal IndexusMessage..::.CacheItemPriority
LRU
Least Recent Used, The objects with the oldest requests will be deleted for free memory space
LFU
Least Frquently used objects will be deleted for free memory space
TIMEBASED
The objects with the smallest time left in cache will be deleted to free memory space
SIZE
Delete always biggest objects to free memory space
LLF
Delete smallest objects to free memory space
HYBRID
a combination with a pointing individual pointing system

Remarks

[Missing <remarks> documentation for "T:SharedCache.WinServiceCommon.Enums.ServiceCacheCleanUp"]

See Also