Enum LocalCache.EvictionPolicyType
The type of eviction policy employed by the cache.
Namespace: Tangosol.Net.Cache
Assembly: Coherence.dll
Syntax
public enum LocalCache.EvictionPolicyType
Fields
Name | Description |
---|---|
External | The cache can prune using an external eviction policy. |
Hybrid | By default, the cache prunes based on a hybrid LRU+LFU algorithm. |
LFU | The cache can prune based on a pure Least Frequently Used (LFU) algorithm. |
LRU | The cache can prune based on a pure Least Recently Used (LRU) algorithm. |
Unknown | Uncpecified eviction policy type. |