Package | Description |
---|---|
net.spy.memcached |
Memcached client and transformation utils
|
Modifier and Type | Method and Description |
---|---|
CASValue<Object> |
MemcachedClientIF.getAndTouch(String key,
int exp) |
CASValue<Object> |
MemcachedClient.getAndTouch(String key,
int exp)
Get a single key and reset its expiration using the default transcoder.
|
<T> CASValue<T> |
MemcachedClientIF.getAndTouch(String key,
int exp,
Transcoder<T> tc) |
<T> CASValue<T> |
MemcachedClient.getAndTouch(String key,
int exp,
Transcoder<T> tc)
Get with a single key and reset its expiration.
|
CASValue<Object> |
MemcachedClientIF.gets(String key) |
CASValue<Object> |
MemcachedClient.gets(String key)
Gets (with CAS support) with a single key using the default transcoder.
|
<T> CASValue<T> |
MemcachedClientIF.gets(String key,
Transcoder<T> tc) |
<T> CASValue<T> |
MemcachedClient.gets(String key,
Transcoder<T> tc)
Gets (with CAS support) with a single key.
|
Modifier and Type | Method and Description |
---|---|
Future<CASValue<Object>> |
MemcachedClientIF.asyncGetAndTouch(String key,
int exp) |
OperationFuture<CASValue<Object>> |
MemcachedClient.asyncGetAndTouch(String key,
int exp)
Get the given key to reset its expiration time.
|
<T> Future<CASValue<T>> |
MemcachedClientIF.asyncGetAndTouch(String key,
int exp,
Transcoder<T> tc) |
<T> OperationFuture<CASValue<T>> |
MemcachedClient.asyncGetAndTouch(String key,
int exp,
Transcoder<T> tc)
Get the given key to reset its expiration time.
|
Future<CASValue<Object>> |
MemcachedClientIF.asyncGets(String key) |
OperationFuture<CASValue<Object>> |
MemcachedClient.asyncGets(String key)
Gets (with CAS support) the given key asynchronously and decode using the
default transcoder.
|
<T> Future<CASValue<T>> |
MemcachedClientIF.asyncGets(String key,
Transcoder<T> tc) |
<T> OperationFuture<CASValue<T>> |
MemcachedClient.asyncGets(String key,
Transcoder<T> tc)
Gets (with CAS support) the given key asynchronously.
|
Copyright © 2018. All rights reserved.