Show / Hide Table of Contents

Enum CompositeCacheStrategyType

Type of CompositeCache invalidation strategy.

Namespace: Tangosol.Net.Cache
Assembly: Coherence.dll
Syntax
public enum CompositeCacheStrategyType

Fields

Name Description
ListenAll

Invalidation strategy that instructs the CompositeCache to listen to all back dictionary events.

ListenAuto

Invalidation strategy that instructs the CompositeCache implementation to switch automatically between ListenPresent and ListenAll strategies based on the cache statistics.

ListenLogical

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).

ListenNone

No invalidation strategy.

ListenPresent

Invalidation strategy that instructs the CompositeCache to listen to the back dictionary events related only to the items currently present in the front dictionary.

In this article
Back to top Copyright © 2000, 2024, Oracle and/or its affiliates.