RegionShortcut Enumeration |
Note: This API is now obsolete.
Namespace: GemStone.GemFire.Cache
Member name | Value | Description | |
---|---|---|---|
PROXY | 0 | A PROXY region has no local state and forwards all operations to a server. | |
CACHING_PROXY | 1 | 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_LRU | 2 | 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. | |
LOCAL | 3 | A LOCAL region only has local state and never sends operations to a server. | |
LOCAL_ENTRY_LRU | 4 | 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. |