Click or drag to resize
RegionShortcut Enumeration

Note: This API is now obsolete.

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
[ObsoleteAttribute("Use classes and APIs from the GemStone.GemFire.Cache.Generic namespace")]
public enum RegionShortcut
Members
  Member nameValueDescription
PROXY0 A PROXY region has no local state and forwards all operations to a server.
CACHING_PROXY1 A CACHING_PROXY region has local state but can also send operations to a server. If the local state is not found then the operation is sent to the server and the local state is updated to contain the server result.
CACHING_PROXY_ENTRY_LRU2 A CACHING_PROXY_ENTRY_LRU region has local state but can also send operations to a server. If the local state is not found then the operation is sent to the server and the local state is updated to contain the server result. It will also destroy entries once it detects that the number of enteries crossing default limit of #100000.
LOCAL3 A LOCAL region only has local state and never sends operations to a server.
LOCAL_ENTRY_LRU4 A LOCAL_ENTRY_LRU region only has local state and never sends operations to a server. It will also destroy entries once it detects once it detects that the number of enteries crossing default limit of #100000.
See Also