org.hibernate.util
Class SimpleMRUCache
java.lang.Object
org.hibernate.util.SimpleMRUCache
- Serializable
public class SimpleMRUCache
extends java.lang.Object
implements Serializable
Cache following a "Most Recently Used" (MRU) algorithm for maintaining a
bounded in-memory size; the "Least Recently Used" (LRU) entry is the first
available for removal from the cache.
This implementation uses a bounded MRU Map to limit the in-memory size of
the cache. Thus the size of this cache never grows beyond the stated size.
void | clear()
|
Object | get(Object key)
|
Object | put(Object key, Object value)
|
int | size()
|
DEFAULT_STRONG_REF_COUNT
public static final int DEFAULT_STRONG_REF_COUNT
SimpleMRUCache
public SimpleMRUCache()
SimpleMRUCache
public SimpleMRUCache(int strongReferenceCount)
get
public Object get(Object key)
put
public Object put(Object key,
Object value)