- Type Parameters:
K
- type of the keys of the mapV
- type of the values of the map
- All Known Implementing Classes:
LruCache
public interface LruCache<K,V>
Least recently used cache.
This cache has a capacity. When the capacity is reached, the oldest record is removed from the cache when a new one
is added.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Default capacity of the cache: 10000. -
Method Summary
Modifier and TypeMethodDescriptionint
capacity()
Capacity of this cache.void
clear()
Clear all records in the cache.computeValue
(K key, Supplier<Optional<V>> valueSupplier) Either return a cached value or compute it and cache it.static <K,
V> LruCache <K, V> create()
Create an instance with default capacity.static <K,
V> LruCache <K, V> create
(int capacity) Create an instance with custom capacity.Get a value from the cache.Put a value to the cache.Remove a value from the cache.int
size()
Current size of the map.
-
Field Details
-
DEFAULT_CAPACITY
static final int DEFAULT_CAPACITYDefault capacity of the cache: 10000.- See Also:
-
-
Method Details
-
create
Create an instance with default capacity.- Type Parameters:
K
- key typeV
- value type- Returns:
- a new cache instance
- See Also:
-
create
Create an instance with custom capacity.- Type Parameters:
K
- key typeV
- value type- Parameters:
capacity
- of the cache- Returns:
- a new cache instance
-
get
Get a value from the cache.- Parameters:
key
- key to retrieve- Returns:
- value if present or empty
-
remove
Remove a value from the cache.- Parameters:
key
- key of the record to remove- Returns:
- the value that was mapped to the key, or empty if none was
-
put
Put a value to the cache.- Parameters:
key
- key to addvalue
- value to add- Returns:
- value that was already mapped or empty if the value was not mapped
-
computeValue
Either return a cached value or compute it and cache it. In case this method is called in parallel for the same key, the value actually present in the map may be from any of the calls. This method always returns either the existing value from the map, or the value provided by the supplier. It never returns a result from another thread's supplier.- Parameters:
key
- key to check/insert value forvalueSupplier
- supplier called if the value is not yet cached, or is invalid- Returns:
- current value from the cache, or computed value from the supplier
-
size
int size()Current size of the map.- Returns:
- number of records currently cached
-
capacity
int capacity()Capacity of this cache.- Returns:
- configured capacity of this cache
-
clear
void clear()Clear all records in the cache.
-