CompositeCacheStrategyType Enumeration |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Type of CompositeCache invalidation strategy.
Namespace:
Tangosol.Net.Cache
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
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