public class SoftHashMap<K,V> extends Objectimplements Map <K ,V>
SoftHashMap is a memory-constrained map that stores its
values in
SoftReferences. (Contrast this with the JDK's
WeakHashMap, which uses weak references for its
keys, which is of little value if you want the cache to auto-resize itself based on memory constraints).
Having the values wrapped by soft references allows the cache to automatically reduce its size based on memory limitations and garbage collection. This ensures that the cache will not cause memory leaks by holding strong references to all of its values.
This class is a generics-enabled Map based on initial ideas from Heinz Kabutz's and Sydney Redelinghuys's
publicly posted version (with their approval), with continued modifications.
This implementation is thread-safe and usable in concurrent environments.
| Constructor and Description |
|---|
SoftHashMap()
Creates a new SoftHashMap with a default retention size size of
DEFAULT_RETENTION_SIZE (100 entries).
|
SoftHashMap(int retentionSize)
Creates a new SoftHashMap with the specified retention size.
|
SoftHashMap(Map
Creates a
SoftHashMap backed by the specified
source, with a default retention size of
DEFAULT_RETENTION_SIZE (100 entries).
|
SoftHashMap(Map
Creates a
SoftHashMap backed by the specified
source, with the specified retention size.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
|
boolean |
containsKey(Object
|
boolean |
containsValue(Object
|
Set |
entrySet()
|
V |
get(Object
|
boolean |
isEmpty()
|
Set |
keySet()
|
V |
put(K key, V value)
Creates a new entry, but wraps the value in a SoftValue instance to enable auto garbage collection.
|
void |
putAll(Map
|
V |
remove(Object
|
int |
size()
|
Collection |
values()
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAllpublic SoftHashMap()
DEFAULT_RETENTION_SIZE (100 entries).
SoftHashMap(int)
public SoftHashMap(int retentionSize)
retentionSize value. This number is intended to be a best-effort retention low water mark.
retentionSize - the total number of most recent entries in the map that will be strongly referenced (retained), preventing them from being eagerly garbage collected by the JVM.
public SoftHashMap(Map<K ,V> source)
SoftHashMap backed by the specified
source, with a default retention size of
DEFAULT_RETENTION_SIZE (100 entries).
source - the backing map to populate this
SoftHashMap
SoftHashMap(Map,int)
public SoftHashMap(Map<K ,V> source, int retentionSize)
SoftHashMap backed by the specified
source, with the specified retention size.
The retention size (n) is the total number of most recent entries in the map that will be strongly referenced (ie 'retained') to prevent them from being eagerly garbage collected. That is, the point of a SoftHashMap is to allow the garbage collector to remove as many entries from this map as it desires, but there will always be (n) elements retained after a GC due to the strong references.
Note that in a highly concurrent environments the exact total number of strong references may differ slightly than the actual
retentionSize value. This number is intended to be a best-effort retention low water mark.
source - the backing map to populate this
SoftHashMap
retentionSize - the total number of most recent entries in the map that will be strongly referenced (retained), preventing them from being eagerly garbage collected by the JVM.
public boolean isEmpty()
public boolean containsKey(Objectkey)
public boolean containsValue(Objectvalue)
public Collection<V> values()
public V put(K key, V value)
public void clear()
public int size()