Java高性能集合类 ConcurrentLinkedHashMap
fmms
13年前
ConcurrentLinkedHashMap是java.util.LinkedHashMap的一个高性能实现。主要用于软件缓存。 <ul> <li>LRU page replacement policy (currently being upgraded to LIRS). </li> <li>Equivalent performance to <a href="/misc/goto?guid=4959517399441660389" rel="nofollow">ConcurrentHashMap</a> under load. </li> <li>Can bound by the size of the values (e.g. Multimap cache). </li> <li>Can notify a listener when an entry is evicted. </li> </ul> <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1326937015093" target="_blank">http://www.open-open.com/lib/view/home/1326937015093</a></p>