Uses of Class
net.rubyeye.xmemcached.GetsResponse
Packages that use GetsResponse
Package
Description
XMemcached's main classes and interfaces,use these classes/interfaces to interact with memcached servers.
-
Uses of GetsResponse in net.rubyeye.xmemcached
Methods in net.rubyeye.xmemcached that return GetsResponseModifier and TypeMethodDescription<T> GetsResponse<T> <T> GetsResponse<T> <T> GetsResponse<T> MemcachedClient.gets(String key, long timeout, Transcoder<T> transcoder) Just like get,But it return a GetsResponse,include cas value for cas update.<T> GetsResponse<T> MemcachedClient.gets(String key, Transcoder transcoder) final <T> GetsResponse<T> final <T> GetsResponse<T> final <T> GetsResponse<T> XMemcachedClient.gets(String key, long timeout, Transcoder<T> transcoder) final <T> GetsResponse<T> XMemcachedClient.gets(String key, Transcoder transcoder) private final <T> GetsResponse<T> XMemcachedClient.gets0(String key, byte[] keyBytes, Transcoder<T> transcoder) Methods in net.rubyeye.xmemcached that return types with arguments of type GetsResponseModifier and TypeMethodDescription<T> Map<String, GetsResponse<T>> MemcachedClient.gets(Collection<String> keyCollections) <T> Map<String, GetsResponse<T>> MemcachedClient.gets(Collection<String> keyCollections, long timeout) <T> Map<String, GetsResponse<T>> MemcachedClient.gets(Collection<String> keyCollections, long opTime, Transcoder<T> transcoder) Bulk gets items<T> Map<String, GetsResponse<T>> MemcachedClient.gets(Collection<String> keyCollections, Transcoder<T> transcoder) final <T> Map<String, GetsResponse<T>> XMemcachedClient.gets(Collection<String> keyCollections) final <T> Map<String, GetsResponse<T>> XMemcachedClient.gets(Collection<String> keyCollections, long timeout) final <T> Map<String, GetsResponse<T>> XMemcachedClient.gets(Collection<String> keyCollections, long timeout, Transcoder<T> transcoder) final <T> Map<String, GetsResponse<T>> XMemcachedClient.gets(Collection<String> keyCollections, Transcoder<T> transcoder) Methods in net.rubyeye.xmemcached with parameters of type GetsResponseModifier and TypeMethodDescription<T> booleanMemcachedClient.cas(String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation) <T> booleanMemcachedClient.cas(String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation, Transcoder<T> transcoder) cas is a check and set operation which means "store this data but only if no one else has updated since I last fetched it."<T> booleanMemcachedClient.cas(String key, GetsResponse<T> getsResponse, CASOperation<T> operation) final <T> booleanXMemcachedClient.cas(String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation) final <T> booleanXMemcachedClient.cas(String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation, Transcoder<T> transcoder) final <T> booleanXMemcachedClient.cas(String key, GetsResponse<T> getsReponse, CASOperation<T> operation) private final <T> booleanXMemcachedClient.cas0(String key, int exp, GetsResponse<T> getsResponse, CASOperation<T> operation, Transcoder<T> transcoder, byte[] keyBytes, boolean noreply) <T> voidMemcachedClient.casWithNoReply(String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation) cas noreply<T> voidMemcachedClient.casWithNoReply(String key, GetsResponse<T> getsResponse, CASOperation<T> operation) <T> voidXMemcachedClient.casWithNoReply(String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation) <T> voidXMemcachedClient.casWithNoReply(String key, GetsResponse<T> getsResponse, CASOperation<T> operation)