Click or drag to resize

LocalCacheEvictionPolicyType Enumeration

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
The type of eviction policy employed by the cache.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public enum EvictionPolicyType
Members
  Member nameValueDescription
Hybrid0 By default, the cache prunes based on a hybrid LRU+LFU algorithm.
LRU1 The cache can prune based on a pure Least Recently Used (LRU) algorithm.
LFU2 The cache can prune based on a pure Least Frequently Used (LFU) algorithm.
External3 The cache can prune using an external eviction policy.
Unknown4 Uncpecified eviction policy type.
See Also