Class LRUCacheMap<K,V>

java.lang.Object
org.redisson.cache.AbstractCacheMap<K,V>
org.redisson.cache.LRUCacheMap<K,V>
Type Parameters:
K - key
V - value
All Implemented Interfaces:
ConcurrentMap<K,V>, Map<K,V>, Cache<K,V>

public class LRUCacheMap<K,V> extends AbstractCacheMap<K,V>
LRU (least recently used) cache.
Author:
Nikita Koksharov