Package | Description |
---|---|
net.spy.memcached |
Memcached client and transformation utils
|
net.spy.memcached.internal |
Internal utilities.
|
Modifier and Type | Method and Description |
---|---|
BulkFuture<Map<String,Object>> |
MemcachedClientIF.asyncGetBulk(Collection<String> keys) |
BulkFuture<Map<String,Object>> |
MemcachedClient.asyncGetBulk(Collection<String> keys)
Asynchronously get a bunch of objects from the cache and decode them with
the given transcoder.
|
<T> BulkFuture<Map<String,T>> |
MemcachedClientIF.asyncGetBulk(Collection<String> keys,
Iterator<Transcoder<T>> tcs) |
<T> BulkFuture<Map<String,T>> |
MemcachedClient.asyncGetBulk(Collection<String> keys,
Iterator<Transcoder<T>> tcIter)
Asynchronously get a bunch of objects from the cache.
|
<T> BulkFuture<Map<String,T>> |
MemcachedClientIF.asyncGetBulk(Collection<String> keys,
Transcoder<T> tc) |
<T> BulkFuture<Map<String,T>> |
MemcachedClient.asyncGetBulk(Collection<String> keys,
Transcoder<T> tc)
Asynchronously get a bunch of objects from the cache.
|
BulkFuture<Map<String,Object>> |
MemcachedClientIF.asyncGetBulk(Iterator<String> keys) |
BulkFuture<Map<String,Object>> |
MemcachedClient.asyncGetBulk(Iterator<String> keyIter)
Asynchronously get a bunch of objects from the cache and decode them with
the given transcoder.
|
<T> BulkFuture<Map<String,T>> |
MemcachedClientIF.asyncGetBulk(Iterator<String> keys,
Iterator<Transcoder<T>> tcs) |
<T> BulkFuture<Map<String,T>> |
MemcachedClient.asyncGetBulk(Iterator<String> keyIter,
Iterator<Transcoder<T>> tcIter)
Asynchronously get a bunch of objects from the cache.
|
<T> BulkFuture<Map<String,T>> |
MemcachedClientIF.asyncGetBulk(Iterator<String> keys,
Transcoder<T> tc) |
<T> BulkFuture<Map<String,T>> |
MemcachedClient.asyncGetBulk(Iterator<String> keyIter,
Transcoder<T> tc)
Asynchronously get a bunch of objects from the cache.
|
BulkFuture<Map<String,Object>> |
MemcachedClientIF.asyncGetBulk(String... keys) |
BulkFuture<Map<String,Object>> |
MemcachedClient.asyncGetBulk(String... keys)
Varargs wrapper for asynchronous bulk gets with the default transcoder.
|
<T> BulkFuture<Map<String,T>> |
MemcachedClientIF.asyncGetBulk(Transcoder<T> tc,
String... keys) |
<T> BulkFuture<Map<String,T>> |
MemcachedClient.asyncGetBulk(Transcoder<T> tc,
String... keys)
Varargs wrapper for asynchronous bulk gets.
|
Modifier and Type | Class and Description |
---|---|
class |
BulkGetFuture<T>
Future for handling results from bulk gets.
|
Copyright © 2019. All rights reserved.