Package | Description |
---|---|
com.gemstone.gemfire.cache |
Provides an implementation of distributed object caching that
can leverage GemFire's distribution capabilities.
|
com.gemstone.gemfire.cache.client |
The
com.gemstone.gemfire.cache.client package provides APIs used
for client connectivity and caching. |
com.gemstone.gemfire.cache.execute |
The
com.gemstone.gemfire.cache.execute package provides APIs used
for function execution on gemfire system members. |
com.gemstone.gemfire.pdx |
The
com.gemstone.gemfire.pdx package provides APIs used
for object serialization. |
Modifier and Type | Interface and Description |
---|---|
interface |
Cache
Caches are obtained from the
CacheFactory.create() method. |
interface |
GemFireCache
GemFireCache represents the singleton cache that must be created
in order to use GemFire in a Java virtual machine.
|
Modifier and Type | Method and Description |
---|---|
RegionService |
Region.getRegionService()
Returns the
cache associated with this region. |
Modifier and Type | Interface and Description |
---|---|
interface |
ClientCache
A ClientCache instance controls the life cycle of the local singleton cache in a client.
|
Modifier and Type | Method and Description |
---|---|
RegionService |
ClientCache.createAuthenticatedView(Properties userSecurityProperties)
Creates an authenticated cache view using the given user security properties
on the client cache's default pool.
|
RegionService |
ClientCache.createAuthenticatedView(Properties userSecurityProperties,
String poolName)
Creates an authenticated cache view using the given user security properties
using the given pool to connect to servers.
|
Modifier and Type | Method and Description |
---|---|
static Execution |
FunctionService.onServer(RegionService regionService)
Returns an
Execution object that can be used to execute a data
independent function on a server that the given cache is connected to. |
static Execution |
FunctionService.onServers(RegionService regionService)
Returns an
Execution object that can be used to execute a data
independent function on all the servers that the given cache is connected to. |
Modifier and Type | Method and Description |
---|---|
RegionService |
ReflectionBasedAutoSerializer.getRegionService()
Returns the cache that this serializer is installed on.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.