Click or drag to resize

ContinuousQueryCacheIsCacheValues Property

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02

Note: This API is now obsolete.

Obtain or modify the local-caching option for this ContinuousQueryCache.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
[ObsoleteAttribute("As of Coherence 3.4 this property is replaced with CacheValues")]
public virtual bool IsCacheValues { get; set; }

Property Value

Type: Boolean
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