Class ConcurrentLRUCache<K,​V extends MemoryObject>

  • Type Parameters:
    K - the key type
    V - the value type
    All Implemented Interfaces:
    Serializable, Cloneable, Map<K,​V>

    public class ConcurrentLRUCache<K,​V extends MemoryObject>
    extends LinkedHashMap<K,​V>
    A synchronized LRU cache. The cache size is limited by the amount of memory (and not number of entries).
    See Also:
    Serialized Form