ben-manes / concurrentlinkedhashmap

A ConcurrentLinkedHashMap for Java
Apache License 2.0
470 stars 113 forks source link

where is the cache stats #41

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
google guava Cache has a  cache.stats() method  which
 give some cache  statistics,concurrentlinkedhasmap has similar method?

Original issue reported on code.google.com by fuyou...@gmail.com on 30 Apr 2014 at 5:20

GoogleCodeExporter commented 9 years ago
CLHM is low level to let developers build upon as needed, whereas Guava Cache 
is general purpose and opinionated. My recommendation is to use Guava for 
normal application development and use CLHM for core infrastructure.

You may be interested in watching my new project, Caffeine, where I plan on 
writing a JDK8 cache that is API compatible with Guava's.

https://github.com/ben-manes/caffeine

Original comment by Ben.Manes@gmail.com on 15 Dec 2014 at 8:14