Click or drag to resize
RegionFactorySetCachingEnabled Method
Set caching enabled flag for this region.

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public RegionFactory SetCachingEnabled(
	bool cachingEnabled
)

Parameters

cachingEnabled
Type: SystemBoolean
if true, cache data for this region in this process.

Return Value

Type: RegionFactory
the instance of RegionFactory
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