CompositeCacheStrategyType Enumeration | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Type of CompositeCache invalidation strategy.
            
 
    Namespace: 
   Tangosol.Net.Cache
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic enum CompositeCacheStrategyType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | ListenNone | 0 | 
            No invalidation strategy.
             | 
 | ListenPresent | 1 | 
            Invalidation strategy that instructs the CompositeCache
            to listen to the back dictionary events related only to
            the items currently present in the front dictionary.
             | 
 | ListenAll | 2 | 
            Invalidation strategy that instructs the CompositeCache
            to listen to all back dictionary events.
             | 
 | ListenAuto | 3 | 
            Invalidation strategy that instructs the CompositeCache
            implementation to switch automatically between ListenPresent and
            ListenAll strategies based on the cache statistics.
             | 
 | ListenLogical | 4 | 
            Invalidation strategy that instructs the CompositeCache
            to listen to all back map events that are not synthetic
            .  A synthetic event could be emitted as a result of eviction
            or expiration.  With this invalidation stategy, it is possible for
            the front map to contain cache entries that have been synthetically
            removed from the back (though any subsequent re-insertion will
            cause the corresponding entries in the front map to be invalidated).
             | 
See Also