Class Cache<K,V>
java.lang.Object
manifold.util.concurrent.Cache<K,V>
static var MY_CACHE = new Cacheinvalid input: '<'Foo, Bar>( 1000, \ foo -> getBar( foo ) )
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionCache(String name, int size, Cache.Loader<K, V> loader) This will create a new cache -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()This will evict a specific key from the cache.This will get a specific entry, it will call the missHandler if it is not found.intdoubleintgetHits()intintintlogEveryNSeconds(int seconds, ILogger logger) Sets up a recurring task every n seconds to report on the status of this cache.static <K,V> Cache <K, V> make(String name, int size, Cache.Loader<K, V> handler) This will put a specific entry in the cachevoidtoString()
-
Constructor Details
-
Cache
This will create a new cache- Parameters:
name- the name of the cache for loggingsize- the maximum size of the logloader- loads values into the cache, this is required not to be null
-
-
Method Details
-
evict
-
put
-
get
-
getCachedValues
-
getConfiguredSize
public int getConfiguredSize() -
getUtilizedSize
public int getUtilizedSize() -
getRequests
public int getRequests() -
getMisses
public int getMisses() -
getHits
public int getHits() -
getHitRate
public double getHitRate() -
logEveryNSeconds
Sets up a recurring task every n seconds to report on the status of this cache. This can be useful if you are doing exploratory caching and wish to monitor the performance of this cache with minimal fuss. Consider- Parameters:
seconds- how often to log the entrylogger- the logger to use- Returns:
- this
-
stopLogging
public void stopLogging() -
clear
public void clear() -
toString
-
make
-