Class LRUCache<K,​V>

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

    public class LRUCache<K,​V>
    extends LinkedHashMap<K,​V>
    最常见的缓存实现方式,缺点是缺少缓存过期功能 dubbo的实现添加了并发访问的功能
    See Also:
    Serialized Form