Class 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