Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Obtain or modify the local-caching option for this ContinuousQueryCache.

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

Syntax

C#
[ObsoleteAttribute("As of Coherence 3.4 this property is replaced with CacheValues")]
public virtual bool IsCacheValues { get; set; }

Field Value

true if this object caches values locally, and false if it relies on the underlying INamedCache.

Remarks

By changing this value from false to true, the ContinuousQueryCache will fully realize its contents locally and maintain them coherently in a manner analogous to the Coherence Near Cache. By changing this value from true to false, the ContinuousQueryCache will discard its locally cached data and rely on the underlying INamedCache.

See Also