Interface Policy.Eviction<K,V>
- Type Parameters:
K- the type of keysV- the type of values
-
Method Summary
Modifier and TypeMethodDescriptioncoldest(int limit) Returns an unmodifiable snapshotMapview of the cache with ordered traversal.default <T> TReturns the computed result from the ordered traversal of the cache entries.coldestWeighted(long weightLimit) Returns an unmodifiable snapshotMapview of the cache with ordered traversal.longReturns the maximum total weighted or unweighted size of this cache, depending on how the cache was constructed.hottest(int limit) Returns an unmodifiable snapshotMapview of the cache with ordered traversal.default <T> TReturns the computed result from the ordered traversal of the cache entries.hottestWeighted(long weightLimit) Returns an unmodifiable snapshotMapview of the cache with ordered traversal.booleanReturns whether the cache is bounded by a maximum size or maximum weight.voidsetMaximum(long maximum) Specifies the maximum total size of this cache.Returns the approximate accumulated weight of entries in this cache.Returns the weight of the entry.
-
Method Details
-
isWeighted
boolean isWeighted()Returns whether the cache is bounded by a maximum size or maximum weight.- Returns:
- if the size bounding takes into account the entry's weight
-
weightOf
Returns the weight of the entry. If this cache does not use a weighted size bound or does not support querying for the entry's weight, then theOptionalIntwill be empty.- Parameters:
key- the key for the entry being queried- Returns:
- the weight if the entry is present in the cache
- Throws:
NullPointerException- if the specified key is null
-
weightedSize
OptionalLong weightedSize()Returns the approximate accumulated weight of entries in this cache. If this cache does not use a weighted size bound, then theOptionalLongwill be empty.- Returns:
- the combined weight of the values in this cache
-
getMaximum
long getMaximum()Returns the maximum total weighted or unweighted size of this cache, depending on how the cache was constructed. This value can be best understood by inspectingisWeighted().- Returns:
- the maximum size bounding, which may be either weighted or unweighted
-
setMaximum
void setMaximum(long maximum) Specifies the maximum total size of this cache. This value may be interpreted as the weighted or unweighted threshold size based on how this cache was constructed. If the cache currently exceeds the new maximum size this operation eagerly evict entries until the cache shrinks to the appropriate size.Note that some implementations may have an internal inherent bound on the maximum total size. If the value specified exceeds that bound, then the value is set to the internal maximum.
- Parameters:
maximum- the maximum, interpreted as weighted or unweighted size depending on how this cache was constructed- Throws:
IllegalArgumentException- if the maximum size specified is negative
-
coldest
Returns an unmodifiable snapshotMapview of the cache with ordered traversal. The order of iteration is from the entries least likely to be retained (coldest) to the entries most likely to be retained (hottest). This order is determined by the eviction policy's best guess at the time of creating this snapshot view.Beware that obtaining the mappings is NOT a constant-time operation. Because of the asynchronous nature of the page replacement policy, determining the retention ordering requires a traversal of the entries within the eviction policy's exclusive lock.
- Parameters:
limit- the maximum size of the returned map (useInteger.MAX_VALUEto disregard the limit)- Returns:
- a snapshot view of the cache from the coldest entry to the hottest
- Throws:
IllegalArgumentException- if the limit specified is negative
-
coldestWeighted
Returns an unmodifiable snapshotMapview of the cache with ordered traversal. The order of iteration is from the entries least likely to be retained (coldest) to the entries most likely to be retained (hottest). This order is determined by the eviction policy's best guess at the time of creating this snapshot view. If the cache is bounded by a maximum size rather than a maximum weight, then this method is equivalent tocoldest(int).Beware that obtaining the mappings is NOT a constant-time operation. Because of the asynchronous nature of the page replacement policy, determining the retention ordering requires a traversal of the entries within the eviction policy's exclusive lock.
- Parameters:
weightLimit- the maximum weight of the returned map (useLong.MAX_VALUEto disregard the limit)- Returns:
- a snapshot view of the cache from the coldest entry to the hottest
- Throws:
IllegalArgumentException- if the limit specified is negative
-
coldest
Returns the computed result from the ordered traversal of the cache entries. The order of iteration is from the entries least likely to be retained (coldest) to the entries most likely to be retained (hottest). This order is determined by the eviction policy's best guess at the time of creating this computation.Usage example:
List<K> tenColdestKeys = cache.policy().eviction().orElseThrow() .coldest(stream -> stream.map(Map.Entry::getKey).limit(10).toList());Beware that this computation is performed within the eviction policy's exclusive lock, so the computation should be short and simple. While the computation is in progress further eviction maintenance will be halted.
- Type Parameters:
T- the type of the result of the mappingFunction- Parameters:
mappingFunction- the mapping function to compute a value- Returns:
- the computed value
- Throws:
NullPointerException- if the mappingFunction is nullRuntimeException- or Error if the mappingFunction does soConcurrentModificationException- if the computation detectably reads or writes an entry in this cache
-
hottest
Returns an unmodifiable snapshotMapview of the cache with ordered traversal. The order of iteration is from the entries most likely to be retained (hottest) to the entries least likely to be retained (coldest). This order is determined by the eviction policy's best guess at the time of creating this snapshot view.Beware that obtaining the mappings is NOT a constant-time operation. Because of the asynchronous nature of the page replacement policy, determining the retention ordering requires a traversal of the entries within the eviction policy's exclusive lock.
- Parameters:
limit- the maximum size of the returned map (useInteger.MAX_VALUEto disregard the limit)- Returns:
- a snapshot view of the cache from the hottest entry to the coldest
- Throws:
IllegalArgumentException- if the limit specified is negative
-
hottestWeighted
Returns an unmodifiable snapshotMapview of the cache with ordered traversal. The order of iteration is from the entries most likely to be retained (hottest) to the entries least likely to be retained (coldest). This order is determined by the eviction policy's best guess at the time of creating this snapshot view. If the cache is bounded by a maximum size rather than a maximum weight, then this method is equivalent tohottest(int).Beware that obtaining the mappings is NOT a constant-time operation. Because of the asynchronous nature of the page replacement policy, determining the retention ordering requires a traversal of the entries within the eviction policy's exclusive lock.
- Parameters:
weightLimit- the maximum weight of the returned map (useLong.MAX_VALUEto disregard the limit)- Returns:
- a snapshot view of the cache from the hottest entry to the coldest
- Throws:
IllegalArgumentException- if the limit specified is negative
-
hottest
Returns the computed result from the ordered traversal of the cache entries. The order of iteration is from the entries most likely to be retained (hottest) to the entries least likely to be retained (coldest). This order is determined by the eviction policy's best guess at the time of creating this computation.Usage example:
List<K> tenHottestKeys = cache.policy().eviction().orElseThrow() .hottest(stream -> stream.map(Map.Entry::getKey).limit(10).toList());Beware that this computation is performed within the eviction policy's exclusive lock, so the computation should be short and simple. While the computation is in progress further eviction maintenance will be halted.
- Type Parameters:
T- the type of the result of the mappingFunction- Parameters:
mappingFunction- the mapping function to compute a value- Returns:
- the computed value
- Throws:
NullPointerException- if the mappingFunction is nullRuntimeException- or Error if the mappingFunction does soConcurrentModificationException- if the computation detectably reads or writes an entry in this cache
-