CacheBuilder
|
A builder of LoadingCache and Cache instances having any combination of the
following features:
- automatic loading of entries into the cache
- least-recently-used eviction when a maximum size is exceeded
- time-based expiration of entries, measured since last access or last write
- keys automatically wrapped in {@code WeakReference}
- values automatically wrapped in {@code WeakReference} or {@code SoftReference}
- notification of evicted (or otherwise removed) entries
- accumulation of cache access statistics
|