Class LRUCacheMap<K,​V>

  • Type Parameters:
    K - key
    V - value
    All Implemented Interfaces:
    Map<K,​V>, Cache<K,​V>

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