Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Construct a CompositeCache using two specified caches:
  • FrontCache (aka "cache", "near" or "shallow")
  • BackCache (aka "actual", "real" or "deep")
and using the specified front cache invalidation strategy.

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

Syntax

C#
public CompositeCache(
	ICache front,
	ICache back,
	CompositeCacheStrategyType strategy
)

Parameters

front
Type: Tangosol.Net.Cache..::..ICache
The front cache.
back
Type: Tangosol.Net.Cache..::..ICache
The back cache.
strategy
Type: Tangosol.Net.Cache..::..CompositeCacheStrategyType
Specifies the strategy used for the front caches invalidation; valid values are CompositeCacheStrategyType values.

See Also