AttributesFactorySetCachingEnabled Method |
Set caching enabled flag for this region.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic void SetCachingEnabled(
bool cachingEnabled
)
Public Sub SetCachingEnabled (
cachingEnabled As Boolean
)
public:
void SetCachingEnabled(
bool cachingEnabled
)
member SetCachingEnabled :
cachingEnabled : bool -> unit
Parameters
- cachingEnabled
- Type: SystemBoolean
if true, cache data for this region in this process.
Remarks
If set to false, then no data is stored in the local process,
but events and distributions will still occur, and the region
can still be used to put and remove, etc...
The default if not set is 'true', 'false' is illegal for regions
of ScopeType.Local scope.
See Also