Package com.tangosol.net.cache
Class CompactSerializationCache.InternalEvictionPolicy.EvictionVisitor
java.lang.Object
com.tangosol.net.cache.CompactSerializationCache.InternalEvictionPolicy.EvictionVisitor
- All Implemented Interfaces:
BinaryLongMap.EntryVisitor
,MultiBinaryLongMap.SafeEntryVisitor
- Enclosing class:
CompactSerializationCache.InternalEvictionPolicy
protected class CompactSerializationCache.InternalEvictionPolicy.EvictionVisitor
extends Object
implements MultiBinaryLongMap.SafeEntryVisitor
SafeEntryVisitor implementation that calculates the set of eviction
candidates.
The EvictionVisitor is to be applied to Entries of a BinaryLongMap that associates cache keys to their size in units (as determined by the configured unit-calculator).
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final long
The minimum number of units to evict.The Map containing the keys which are candidates for eviction, mapped to their size in units.protected long
The number of units occupied by the entries in the eviction set.protected long
The weight of the lightest entry that we have decided to keep. -
Constructor Summary
ConstructorsConstructorDescriptionEvictionVisitor
(long cLowUnits) Construct an EvictionVisitor to identify the set of keys to evict from the cache in order to prune the cache down to the specified low-units threshold -
Method Summary
Modifier and TypeMethodDescriptionvoid
visit
(BinaryLongMap.Entry entry) Visit the specified entry.
-
Field Details
-
f_setEvicting
protected final SortedSet<CompactSerializationCache.InternalEvictionPolicy.EvictionCandidate> f_setEvictingThe Map containing the keys which are candidates for eviction, mapped to their size in units. -
f_cUnitsToEvict
protected final long f_cUnitsToEvictThe minimum number of units to evict. -
m_cUnitsEvicting
protected long m_cUnitsEvictingThe number of units occupied by the entries in the eviction set. Used during the iteration (evict-set calculation) only. -
m_lKeepThreshold
protected long m_lKeepThresholdThe weight of the lightest entry that we have decided to keep. All of the entries to evict will be lighter than this threshold.
-
-
Constructor Details
-
EvictionVisitor
public EvictionVisitor(long cLowUnits) Construct an EvictionVisitor to identify the set of keys to evict from the cache in order to prune the cache down to the specified low-units threshold- Parameters:
cLowUnits
- the low-units threshold to prune the cache to
-
-
Method Details
-
visit
Visit the specified entry.- Specified by:
visit
in interfaceBinaryLongMap.EntryVisitor
- Parameters:
entry
- the entry
-