public class SoftLimitMRUCache extends Object implements Serializable
This implementation uses a "soft limit" to the in-memory size of the cache,
meaning that all cache entries are kept within a completely
SoftReference
-based map with the most recently utilized
entries additionally kept in a hard-reference manner to prevent those cache
entries soft references from becoming enqueued by the garbage collector. Thus
the actual size of this cache impl can actually grow beyond the stated max
size bound as long as GC is not actively seeking soft references for
enqueuement.
The soft-size is bounded and configurable. This allows controlling memory usage which can grow out of control under some circumstances, especially when very large heaps are in use. Although memory usage per se should not be a problem with soft references, which are cleared when necessary, this can trigger extremely slow stop-the-world GC pauses when nearing full heap usage, even with CMS concurrent GC (i.e. concurrent mode failure). This is most evident when ad-hoc HQL queries are produced by the application, leading to poor soft-cache hit ratios. This can also occur with heavy use of SQL IN clauses, which will generate multiples SQL queries (even if parameterized), one for each collection/array size passed to the IN clause. Many slightly different queries will eventually fill the heap and trigger a full GC to reclaim space, leading to unacceptable pauses in some cases.
Note: This class is serializable, however all entries are discarded on serialization.
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_SOFT_REF_COUNT
The default soft reference count.
|
static int |
DEFAULT_STRONG_REF_COUNT
The default strong reference count.
|
Constructor and Description |
---|
SoftLimitMRUCache()
Constructs a cache with the default settings.
|
SoftLimitMRUCache(int strongRefCount,
int softRefCount)
Constructs a cache with the specified settings.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears the cache.
|
Object |
get(Object key)
Gets an object from the cache.
|
Object |
put(Object key,
Object value)
Puts a value in the cache.
|
int |
size()
Gets the strong reference cache size.
|
int |
softSize()
Gets the soft reference cache size.
|
public static final int DEFAULT_STRONG_REF_COUNT
public static final int DEFAULT_SOFT_REF_COUNT
public SoftLimitMRUCache()
DEFAULT_STRONG_REF_COUNT
,
DEFAULT_SOFT_REF_COUNT
public SoftLimitMRUCache(int strongRefCount, int softRefCount)
strongRefCount
- the strong reference count.softRefCount
- the soft reference count.IllegalArgumentException
- if either of the arguments is less than one, or if the strong
reference count is higher than the soft reference count.public Object get(Object key)
key
- the cache key.null
if no entry exists.public Object put(Object key, Object value)
key
- the key.value
- the value.public int size()
public int softSize()
public void clear()
Copyright © 2006-2017 Red Hat, Inc. All Rights Reserved