资 源 简 介
Migrated to Github
https://github.com/ben-manes/concurrentlinkedhashmap
Caffeine: Java 8 rewrite of Guava"s Cache
https://github.com/ben-manes/caffeine
A high performance version of java.util.LinkedHashMap for use as a software cache.
Design
A linked list runs through a ConcurrentHashMap to provide eviction ordering.
Avoids lock contention by amortizing the penalty under lock.
See the design document and the StrangeLoop conference slides (Concurrent Caching at Google).
Features <