Package org.biojava3.core.util
Class SoftHashMap<K,V>
java.lang.Object
java.util.AbstractMap<K,V>
org.biojava3.core.util.SoftHashMap<K,V>
- All Implemented Interfaces:
Map<K,
V>
A in memory cache using soft references. (can be garbage collected)
This code is based on:
http://java-interview-faqs.blogspot.com/2008/09/building-faster-and-efficient-cache.html
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,
V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Field Summary
-
Constructor Summary
-
Method Summary
Methods inherited from class java.util.AbstractMap
containsKey, containsValue, equals, hashCode, isEmpty, keySet, putAll, toString, values
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Field Details
-
DEBUG
public static final boolean DEBUG- See Also:
-
DEFAULT_LIMIT
public static final int DEFAULT_LIMIT- See Also:
-
-
Constructor Details
-
SoftHashMap
public SoftHashMap() -
SoftHashMap
public SoftHashMap(int hardSize)
-
-
Method Details
-
get
-
put
Here we put the key, value pair into the HashMap using a SoftValue object. -
remove
-
clear
public void clear() -
size
public int size() -
entrySet
-