Mirrors com.google.common.cache.RemovalCause
Mirrors com.google.common.cache.RemovalNotification
A simplified wrapper around com.google.common.cache.CacheBuilder
A simplified wrapper around com.google.common.cache.CacheBuilder
Sets the minimum total size for the internal hash tables.
Specifies the maximum number of entries the cache may contain.
Guides the allowed concurrency among update operations.
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, the most recent replacement of its value, or its last access.
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.
Specifies that active entries are eligible for automatic refresh once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.
Enable the accumulation of CacheStats during the operation of the cache.
Specifies that each key (not value) stored in the cache should be wrapped in a WeakReference (by default, strong references are used).
Specifies that each value (not key) stored in the cache should be wrapped in a WeakReference (by default, strong references are used).
Specifies that each value (not key) stored in the cache should be wrapped in a SoftReference (by default, strong references are used).
Specifies a listener instance that caches should notify each time an entry is removed for any reason.
Wrapper for Google Guava's Cache classes