public interface EvictionPolicy<K,V>
onEntryAccessed(boolean, EvictableEntry)
notifications and
whenever an element needs to be evicted, EvictableEntry.evict()
method should be called.
Ignite comes with following eviction policies out-of-the-box:
The eviction policy thread-safety is ensured by Ignition. Implementations of this interface should not worry about concurrency and should be implemented as they were only accessed from one thread.
Note that implementations of all eviction policies provided by Ignite are very light weight in a way that they are all lock-free (or very close to it), and do not create any internal tables, arrays, or other expensive structures. The eviction order is preserved by attaching light-weight meta-data to existing cache entries.
Modifier and Type | Method and Description |
---|---|
void |
onEntryAccessed(boolean rmv,
EvictableEntry<K,V> entry)
Callback for whenever entry is accessed.
|
void onEntryAccessed(boolean rmv, EvictableEntry<K,V> entry)
rmv
- True
if entry has been removed, false
otherwise.entry
- Accessed entry.
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.7.2 Release Date : February 6 2019