Package | Description |
---|---|
com.gemstone.gemfire.admin |
Provides an API for administering various GemFire components such
as a GemFire distributed
system, and processes that host GemFire Caches.
|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
Modifier and Type | Method and Description |
---|---|
DataPolicy |
SystemMemberRegion.getDataPolicy()
Deprecated.
Returns the DataPolicy in this region's attributes.
|
Modifier and Type | Field and Description |
---|---|
static DataPolicy |
DataPolicy.DEFAULT
The data policy used by default; it is
NORMAL . |
static DataPolicy |
DataPolicy.EMPTY
Data is never stored in local memory.
|
static DataPolicy |
DataPolicy.NORMAL
Allows the contents in this cache to differ from other caches.
|
static DataPolicy |
DataPolicy.PARTITION
Data in this region may be spread across a number of processes.
|
static DataPolicy |
DataPolicy.PERSISTENT_PARTITION
In addition to
PARTITION also causes data to be stored to
disk. |
static DataPolicy |
DataPolicy.PERSISTENT_REPLICATE
In addition to
REPLICATE also causes data to be stored to
disk. |
static DataPolicy |
DataPolicy.PRELOADED
In addition to
NORMAL , contents inside of this cache are
(partially) initialized with data from other caches, if available. |
static DataPolicy |
DataPolicy.REPLICATE
The region will be initialized with the data from other caches and accepts
any new entries created in other caches.
|
Modifier and Type | Method and Description |
---|---|
static DataPolicy |
DataPolicy.fromOrdinal(byte ordinal)
Return the DataPolicy represented by specified ordinal
|
DataPolicy |
MirrorType.getDataPolicy()
Deprecated.
Returns the
DataPolicy that corresponds to this mirror type. |
DataPolicy |
RegionAttributes.getDataPolicy()
Returns the data policy for this region.
|
Modifier and Type | Method and Description |
---|---|
void |
AttributesFactory.setDataPolicy(DataPolicy dataPolicy)
Deprecated.
Sets the data policy for the next
RegionAttributes created. |
RegionFactory<K,V> |
RegionFactory.setDataPolicy(DataPolicy dataPolicy)
Sets the data policy for the next
RegionAttributes created. |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.