| Package | Description |
|---|---|
| distcache | |
| distcache.gemfire | |
| distcache.hashmap |
| Modifier and Type | Method and Description |
|---|---|
void |
DistCache.addMembers(Map caches)
Notifies this member about other members of the distributed cache.
|
void |
DistCache.close()
Closes the local cache.
|
void |
DistCache.create(Object key,
Object value)
Puts the specified key and value into the cache.
|
void |
DistCache.createCache()
Creates the local cache (with no regions).
|
void |
DistCache.createKey(Object key)
Puts the specified key, with no value, into the cache.
|
void |
DistCache.destroy(Object key)
Removes the specified key and its value from the cache.
|
Object |
DistCache.get(Object key)
Gets the value with the specified key from the cache.
|
void |
DistCache.invalidate(Object key)
Removes the value from the cache, but keeps the key.
|
void |
DistCache.localDestroy(Object key)
Removes the specified key and its value from the local cache.
|
Object |
DistCache.localGet(Object key)
Gets the value with the specified key from the local cache.
|
void |
DistCache.localInvalidate(Object key)
Removes the value from the local cache, but keeps the key.
|
void |
DistCache.open()
Opens the local cache.
|
void |
DistCache.put(Object key,
Object value)
Puts the specified value into the cache at the specified key.
|
int |
DistCache.size()
Returns the number of entries in the local cache.
|
void |
DistCache.synchPut(Object key,
Object value)
Puts the specified value in the cache at the specified key
under the protection of a distributed lock.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GemFireCacheTestImpl.addMembers(Map caches)
|
void |
GemFireCacheTestImpl.close()
See
DistCache.close(). |
void |
GemFireCacheTestImpl.create(Object key,
Object value)
|
void |
GemFireCacheTestImpl.createCache()
|
void |
GemFireCacheTestImpl.createKey(Object key)
|
void |
GemFireCacheTestImpl.destroy(Object key)
|
Object |
GemFireCacheTestImpl.get(Object key)
|
void |
GemFireCacheTestImpl.invalidate(Object key)
|
void |
GemFireCacheTestImpl.localDestroy(Object key)
|
void |
GemFireCacheTestImpl.localInvalidate(Object key)
|
void |
GemFireCacheTestImpl.open()
See
DistCache.open(). |
void |
GemFireCacheTestImpl.put(Object key,
Object value)
|
int |
GemFireCacheTestImpl.size()
See
DistCache.size(). |
void |
GemFireCacheTestImpl.synchPut(Object key,
Object value)
|
| Modifier and Type | Method and Description |
|---|---|
void |
HashMapCacheImpl.addMembers(Map caches)
|
void |
HashMapCacheImpl.create(Object key,
Object value)
|
void |
HashMapCacheImpl.createCache()
|
void |
HashMapCacheImpl.createKey(Object key)
|
void |
HashMapCacheImpl.destroy(Object key)
|
Object |
HashMapCacheImpl.get(Object key)
|
void |
HashMapCacheImpl.invalidate(Object key)
|
void |
HashMapCacheImpl.localDestroy(Object key)
|
void |
HashMapCacheImpl.localInvalidate(Object key)
|
void |
HashMapCacheImpl.open()
See
DistCache.open(). |
void |
HashMapCacheImpl.put(Object key,
Object value)
|
int |
HashMapCacheImpl.size()
See
DistCache.size(). |
void |
HashMapCacheImpl.synchPut(Object key,
Object value)
|
Copyright © 2010-2015 Pivotal Software, Inc. All rights reserved.