Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Type of CompositeCache invalidation strategy.

Namespace: Tangosol.Net.Cache
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public enum CompositeCacheStrategyType

Members

Member nameValueDescription
ListenNone0 No invalidation strategy.
ListenPresent1 Invalidation strategy that instructs the CompositeCache to listen to the back dictionary events related only to the items currently present in the front dictionary.
ListenAll2 Invalidation strategy that instructs the CompositeCache to listen to all back dictionary events.
ListenAuto3 Invalidation strategy that instructs the CompositeCache implementation to switch automatically between ListenPresent and ListenAll strategies based on the cache statistics.
ListenLogical4 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