Uses of Interface
net.spy.memcached.MemcachedClientIF

Packages that use MemcachedClientIF
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.util Cache Utilities. 
 

Uses of MemcachedClientIF in net.spy.memcached
 

Subinterfaces of MemcachedClientIF in net.spy.memcached
 interface MembaseClientIF
          This interface is provided as a helper for testing clients of the MembaseClient.
 

Classes in net.spy.memcached that implement MemcachedClientIF
 class CouchbaseClient
           
 class MembaseClient
           
 class MemcachedClient
          Client to a memcached server.
 

Constructors in net.spy.memcached with parameters of type MemcachedClientIF
BaseCacheMap(MemcachedClientIF c, int expiration, String prefix, Transcoder<V> t)
          Build a BaseCacheMap.
CacheMap(MemcachedClientIF c, int expiration, String prefix)
          Construct a CacheMap over the given MemcachedClient.
CacheMap(MemcachedClientIF c, String prefix)
          Construct a CacheMap over the given MemcachedClient with no expiration.
CASMutator(MemcachedClientIF c, Transcoder<T> tc)
          Construct a CASMutator that uses the given client.
CASMutator(MemcachedClientIF c, Transcoder<T> tc, int max_tries)
          Construct a CASMutator that uses the given client.
 

Uses of MemcachedClientIF in net.spy.memcached.util
 

Constructors in net.spy.memcached.util with parameters of type MemcachedClientIF
CacheLoader(MemcachedClientIF c)
          Simple CacheLoader constructor that doesn't provide any feedback and caches forever.
CacheLoader(MemcachedClientIF c, ExecutorService es, CacheLoader.StorageListener sl, int exp)
          Get a CacheLoader with all the options.