HyperbolicEvictionPolicy class
Discards based on how frequently the entries are used divided by their age.
- Implemented types
Constructors
- HyperbolicEvictionPolicy()
-
Builds a HyperbolicEvictionPolicy
const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
select(
Iterable< CacheInfo?> entries, DateTime now) → CacheInfo? -
Finds the best eviction candidate based on the sampled entries. What
distinguishes this approach from the classic data structures approach is
that an CacheInfo contains metadata (e.g. usage information) which can be used
for making policy decisions, while generic data structures do not. It is
expected that implementations will take advantage of that metadata.
inherited
-
selectEntry(
CacheInfo entry, CacheInfo selectedEntry, DateTime now) → bool -
Returns
true
ifentry
is a better candidate for eviction than the currentselectedEntry
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited