public class FastReadCache<K,V> extends java.lang.Object implements Cache<K,V>, java.io.Serializable, java.lang.Cloneable
CacheMap
that the possibility to have cache hit is much more than
not. It maintains a readonly cache (so no need to synchronize), and then
clone and replace it if there is a miss.
Thus, as time goes, most access can go directly to the readonly cache
without any synchronization or cloning.
Thread safe.
DEFAULT_LIFETIME, DEFAULT_MAX_SIZE
Constructor and Description |
---|
FastReadCache()
Constructor.
|
FastReadCache(int maxSize,
int lifetime)
Constructor.
|
FastReadCache(int maxSize,
int lifetime,
short maxMissCount)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
clear()
Clears all objects being cached.
|
boolean |
containsKey(java.lang.Object key)
Returns whether the specified key is stored.
|
V |
get(java.lang.Object key)
Returns the object of the specified key, or null if not found.
|
int |
getLifetime()
Returns the minimal lifetime, unit=milliseconds.
|
int |
getMaxSize()
Returns the maximal allowed size.
|
V |
put(K key,
V value)
Stores an object to the cache.
|
V |
remove(java.lang.Object key)
Removes an object from the cache.
|
void |
setLifetime(int lifetime)
Sets the minimal lifetime.
|
void |
setMaxSize(int maxsize)
Sets the maximal allowed size.
|
public FastReadCache()
public FastReadCache(int maxSize, int lifetime)
public FastReadCache(int maxSize, int lifetime, short maxMissCount)
maxMissCount
- a short value from 0 to this for sync the read cache,
default is 100.public boolean containsKey(java.lang.Object key)
Cache
containsKey
in interface Cache<K,V>
public V get(java.lang.Object key)
Cache
public V put(K key, V value)
Cache
public V remove(java.lang.Object key)
Cache
public void clear()
Cache
public int getLifetime()
Cache
getLifetime
in interface Cache<K,V>
Cache.getMaxSize()
public void setLifetime(int lifetime)
Cache
Cache.DEFAULT_LIFETIME
.setLifetime
in interface Cache<K,V>
lifetime
- the lifetime, unit=milliseconds;
if non-positive, they will be removed immediately.Cache.getLifetime()
public int getMaxSize()
Cache
Cache.DEFAULT_MAX_SIZE
.
An mapping won't be removed by GC unless the minimal lifetime
or the maximal allowed size exceeds.getMaxSize
in interface Cache<K,V>
Cache.getLifetime()
public void setMaxSize(int maxsize)
Cache
setMaxSize
in interface Cache<K,V>
Cache.getMaxSize()
Copyright © 2005-2021 Potix Corporation. All Rights Reserved.