LocalCacheEvictionPolicyType Enumeration | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            The type of eviction policy employed by the cache.
            
 
    Namespace: 
   Tangosol.Net.Cache
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic enum EvictionPolicyType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Hybrid | 0 | 
            By default, the cache prunes based on a hybrid LRU+LFU
            algorithm.
             | 
 | LRU | 1 | 
            The cache can prune based on a pure Least Recently Used (LRU)
            algorithm.
             | 
 | LFU | 2 | 
            The cache can prune based on a pure Least Frequently Used
            (LFU) algorithm.
             | 
 | External | 3 | 
            The cache can prune using an external eviction policy.
             | 
 | Unknown | 4 | 
            Uncpecified eviction policy type.
             | 
See Also