| Methods in com.thimbleware.jmemcached.storage.hash that return ConcurrentLinkedHashMap |
static
|
ConcurrentLinkedHashMap.create(ConcurrentLinkedHashMap.EvictionPolicy policy,
int maximumCapacity,
long maximumMemoryCapacity)
Creates a map with the specified eviction policy, maximum capacity, and at the default concurrency level. |
static
|
ConcurrentLinkedHashMap.create(ConcurrentLinkedHashMap.EvictionPolicy policy,
int maximumCapacity,
long maximumMemoryCapacity,
ConcurrentLinkedHashMap.EvictionListener<K,V> listener)
Creates a map with the specified eviction policy, maximum capacity, eviction listener, and at the
default concurrency level. |
static
|
ConcurrentLinkedHashMap.create(ConcurrentLinkedHashMap.EvictionPolicy policy,
int maximumCapacity,
long maximumMemoryCapacity,
int concurrencyLevel)
Creates a map with the specified eviction policy, maximum capacity, and concurrency level. |
static
|
ConcurrentLinkedHashMap.create(ConcurrentLinkedHashMap.EvictionPolicy policy,
int maximumCapacity,
long maximumMemoryCapacity,
int concurrencyLevel,
ConcurrentLinkedHashMap.EvictionListener<K,V> listener)
Creates a map with the specified eviction policy, maximum capacity, eviction listener, and concurrency level. |