Class LRUCache<K,​V>

  • All Implemented Interfaces:
    Serializable, Cloneable, Map<K,​V>

    public class LRUCache<K,​V>
    extends LinkedHashMap<K,​V>
    Implements a generic LRU cache which evicts after the max size is reached.
    Since:
    2.2.0
    Author:
    Michael Nitschinger
    See Also:
    Serialized Form