Uses of Class
org.glassfish.hk2.utilities.cache.LRUCache
-
Packages that use LRUCache Package Description org.glassfish.hk2.utilities.cache org.glassfish.hk2.utilities.cache.internal -
-
Uses of LRUCache in org.glassfish.hk2.utilities.cache
Methods in org.glassfish.hk2.utilities.cache that return LRUCache Modifier and Type Method Description static <K,V>
LRUCache<K,V>LRUCache. createCache(int maxCacheSize)
Creates a cache with the given maximum cache size -
Uses of LRUCache in org.glassfish.hk2.utilities.cache.internal
Subclasses of LRUCache in org.glassfish.hk2.utilities.cache.internal Modifier and Type Class Description class
LRUCacheCheapRead<K,V>
LRU Cache implementation that relies on entries that keep last hit (get/put) timestamp in order to be able to remove least recently accessed items when running out of cache capacity.
-