Class LruCache<Key, Value extends CanEstimateSize>
java.lang.Object
org.postgresql.util.LruCache<Key,Value>
- All Implemented Interfaces:
Gettable<Key,Value>
public class LruCache<Key, Value extends CanEstimateSize>
extends Object
implements Gettable<Key,Value>
Caches values in simple least-recently-accessed order.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceWhen the entry is not present in cache, this create action is used to create one.static interfaceAction that is invoked when the entry is removed from the cache. -
Constructor Summary
ConstructorsConstructorDescriptionLruCache(int maxSizeEntries, long maxSizeBytes, boolean accessOrder) LruCache(int maxSizeEntries, long maxSizeBytes, boolean accessOrder, LruCache.CreateAction<Key, Value> createAction, LruCache.EvictAction<Value> onEvict) -
Method Summary
-
Constructor Details
-
LruCache
public LruCache(int maxSizeEntries, long maxSizeBytes, boolean accessOrder) -
LruCache
public LruCache(int maxSizeEntries, long maxSizeBytes, boolean accessOrder, LruCache.CreateAction<Key, Value> createAction, LruCache.EvictAction<Value> onEvict)
-
-
Method Details
-
get
-
borrow
Borrows an entry from the cache.- Parameters:
key- cache key- Returns:
- entry from cache or newly created entry if cache does not contain given key.
- Throws:
SQLException- if entry creation fails
-
put
-
putAll
-