Package org.mockserver.cache
Class LRUCache<K,V>
- java.lang.Object
-
- org.mockserver.cache.LRUCache<K,V>
-
public class LRUCache<K,V> extends Object
-
-
Constructor Summary
Constructors Constructor Description LRUCache(MockServerLogger mockServerLogger, int maxSize, long ttlInMillis)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static voidallCachesEnabled(boolean enabled)static voidclearAllCaches()voiddelete(K key)Vget(K key)voidput(K key, V value)voidput(K key, V value, long ttl)static voidsetMaxSizeOverride(int maxSizeOverride)
-
-
-
Constructor Detail
-
LRUCache
public LRUCache(MockServerLogger mockServerLogger, int maxSize, long ttlInMillis)
-
-
Method Detail
-
allCachesEnabled
public static void allCachesEnabled(boolean enabled)
-
clearAllCaches
public static void clearAllCaches()
-
delete
public void delete(K key)
-
setMaxSizeOverride
public static void setMaxSizeOverride(int maxSizeOverride)
-
-