public class ConcurrentCacheMap<K,V> extends Object implements CacheMap<K,V>
The data is stored in a ConcurrentHashMap
giving it high throughput under load.
It uses a special token to transparently store null keys and values which are not natively supported by ConcurrentHashMap
.
Constructor and Description |
---|
ConcurrentCacheMap() |
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all of the mappings from this cache.
|
Collection<V> |
copyOfValues()
Returns a
Collection view of the values contained in this cache. |
V |
get(K key)
Returns the value to which the specified key is mapped,
or
null if this cache contains no mapping for the key. |
void |
put(K key,
V value)
Maps the specified key to the specified value in this cache.
|
void |
remove(K key)
Removes the key (and its corresponding value) from this cache.
|
public V get(K key)
CacheMap
null
if this cache contains no mapping for the key.public void put(K key, V value)
CacheMap
The value can be retrieved by calling the get method with a key that is equal to the original key.
public void clear()
CacheMap
public void remove(K key)
CacheMap
public Collection<V> copyOfValues()
CacheMap
Collection
view of the values contained in this cache.
The collection is a copy of the values that were contained at the time that this operation was called. Concurrent implementations of this interface will likely allow mutating operations to occur while the collection is being constructed, and which of these modifications are in the resulting collection will be timing and implementation dependant.
copyOfValues
in interface CacheMap<K,V>
Collection
view of the values contained in this cache.Copyright © 2002-2015 Atlassian. All Rights Reserved.