Class SerializingCache<K extends Serializable,V extends Serializable>
- java.lang.Object
-
- org.jivesoftware.util.cache.SerializingCache<K,V>
-
public class SerializingCache<K extends Serializable,V extends Serializable> extends Object implements Cache<K,V>
A Cache implementation that stores data in serialized form. The primary benefit of usage of this cache is that the cached data is stored without any references to their classes. This allows cache content to remain usable after the classes that instantiate the data get reloaded. This is of particular interest when the cache is used to store data provided by Openfire plugins (as these classes get loaded by a class loader that is replaced when a plugin gets reloaded or upgraded). As compared to other caches, usage of this cache will require more system resources, as the serialized representation of an object typically is (much) larger than its original (unserialized) form. An instance is backed by a backing Cache that is used as a delegate. This implementation serializes data before storing it in this delegate, and deserializes it when it is retrieved. If problems occur during serialization or deserializing of data, the various methods in this class will throw runtime exceptions.- Author:
- Guus der Kinderen, guus.der.kinderen@gmail.com
- See Also:
- Issue OF-2239: Make it easier to cache plugin class instances
-
-
Field Summary
-
Fields inherited from interface org.jivesoftware.util.cache.Cache
secretKey, secretValue
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
addClusteredCacheEntryListener(ClusteredCacheEntryListener<K,V> listener, boolean includeValues, boolean includeEventsFromLocalNode)
Registers a listener to receive entry events for this cache.void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<K,V>>
entrySet()
IMPORTANT: Unlike the standardMap.entrySet()
implementation, the set returned from this method cannot be modified.V
get(Object key)
long
getCacheHits()
Returns the number of cache hits.long
getCacheMisses()
Returns the number of cache misses.String
getCacheSizeRemark()
An optional, human-readable remark on the current size of the cache.Cache.CapacityUnit
getCapacityUnit()
Defines the unit used to calculate the capacity of the cache.Class<K>
getKeyClass()
long
getLongCacheSize()
Returns the size of the cache.long
getMaxCacheSize()
Returns the maximum size of the cache.String
getMaxCacheSizeRemark()
An optional, human-readable remark on the maximum cache capacity configuration.long
getMaxLifetime()
Returns the maximum number of milliseconds that any object can live in cache.String
getName()
Returns the name of the cache.Class<V>
getValueClass()
boolean
isEmpty()
Set<K>
keySet()
IMPORTANT: Unlike the standardMap.keySet()
implementation, the set returned from this method cannot be modified.protected String
marshall(Object object)
V
put(K key, V value)
void
putAll(Map<? extends K,? extends V> map)
V
remove(Object key)
void
removeClusteredCacheEntryListener(String listenerId)
Removes a previously registered event listener.void
setMaxCacheSize(long maxSize)
Sets the maximum size of the cache.void
setMaxLifetime(long maxLifetime)
Sets the maximum number of milliseconds that any object can live in cache.void
setName(String name)
Sets the name of the cacheint
size()
Collection<V>
values()
IMPORTANT: Unlike the standardMap.values()
implementation, the collection returned from this method cannot be modified.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jivesoftware.util.cache.Cache
getLock, isKeySecret, isValueSecret, setSecretKey, setSecretValue
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
put
@Nullable public V put(@Nullable K key, @Nullable V value)
- Specified by:
put
in interfaceMap<K extends Serializable,V extends Serializable>
-
get
@Nullable public V get(@Nullable Object key)
- Specified by:
get
in interfaceMap<K extends Serializable,V extends Serializable>
-
remove
@Nullable public V remove(@Nullable Object key)
- Specified by:
remove
in interfaceMap<K extends Serializable,V extends Serializable>
-
clear
public void clear()
- Specified by:
clear
in interfaceMap<K extends Serializable,V extends Serializable>
-
size
public int size()
- Specified by:
size
in interfaceMap<K extends Serializable,V extends Serializable>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceMap<K extends Serializable,V extends Serializable>
-
values
@Nonnull public Collection<V> values()
Description copied from interface:Cache
IMPORTANT: Unlike the standardMap.values()
implementation, the collection returned from this method cannot be modified.- Specified by:
values
in interfaceCache<K extends Serializable,V extends Serializable>
- Specified by:
values
in interfaceMap<K extends Serializable,V extends Serializable>
- Returns:
- an unmodifiable collection view of the values contained in this map
-
containsKey
public boolean containsKey(@Nullable Object key)
- Specified by:
containsKey
in interfaceMap<K extends Serializable,V extends Serializable>
-
putAll
public void putAll(@Nonnull Map<? extends K,? extends V> map)
- Specified by:
putAll
in interfaceMap<K extends Serializable,V extends Serializable>
-
containsValue
public boolean containsValue(@Nullable Object value)
- Specified by:
containsValue
in interfaceMap<K extends Serializable,V extends Serializable>
-
entrySet
@Nonnull public Set<Map.Entry<K,V>> entrySet()
Description copied from interface:Cache
IMPORTANT: Unlike the standardMap.entrySet()
implementation, the set returned from this method cannot be modified.- Specified by:
entrySet
in interfaceCache<K extends Serializable,V extends Serializable>
- Specified by:
entrySet
in interfaceMap<K extends Serializable,V extends Serializable>
- Returns:
- an unmodifiable set view of the mappings contained in this map
-
keySet
@Nonnull public Set<K> keySet()
Description copied from interface:Cache
IMPORTANT: Unlike the standardMap.keySet()
implementation, the set returned from this method cannot be modified.- Specified by:
keySet
in interfaceCache<K extends Serializable,V extends Serializable>
- Specified by:
keySet
in interfaceMap<K extends Serializable,V extends Serializable>
- Returns:
- an unmodifiable set view of the keys contained in this map
-
getCapacityUnit
public Cache.CapacityUnit getCapacityUnit()
Description copied from interface:Cache
Defines the unit used to calculate the capacity of the cache.When the unit is unknown, null is returned.
- Specified by:
getCapacityUnit
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the unit to be used to calculate the capacity of this cache.
-
getName
public String getName()
Description copied from interface:Cache
Returns the name of the cache.- Specified by:
getName
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the name of the cache.
-
setName
public void setName(String name)
Description copied from interface:Cache
Sets the name of the cache- Specified by:
setName
in interfaceCache<K extends Serializable,V extends Serializable>
- Parameters:
name
- the name of the cache
-
getCacheHits
public long getCacheHits()
Description copied from interface:Cache
Returns the number of cache hits. A cache hit occurs every time the get method is called and the cache contains the requested object.Keeping track of cache hits and misses lets one measure how efficient the cache is; the higher the percentage of hits, the more efficient.
- Specified by:
getCacheHits
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the number of cache hits.
-
getCacheMisses
public long getCacheMisses()
Description copied from interface:Cache
Returns the number of cache misses. A cache miss occurs every time the get method is called and the cache does not contain the requested object.Keeping track of cache hits and misses lets one measure how efficient the cache is; the higher the percentage of hits, the more efficient.
- Specified by:
getCacheMisses
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the number of cache hits.
-
getLongCacheSize
public long getLongCacheSize()
Description copied from interface:Cache
Returns the size of the cache.The value should be placed in context of the unit returned by
Cache.getCapacityUnit()
. When, for example, the capacity unit for this cache isCache.CapacityUnit.BYTES
, then a return value of 2048 should be interpreted as all entities of this cache having a combined size of 2024 bytes (or 2KB). When the capacity unit isCache.CapacityUnit.ENTITIES
then this cache currently contains 2048 elements.The returned value can be an approximation.
- Specified by:
getLongCacheSize
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the size of the cache contents.
-
getCacheSizeRemark
public String getCacheSizeRemark()
Description copied from interface:Cache
An optional, human-readable remark on the current size of the cache.- Specified by:
getCacheSizeRemark
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- an optional human-readable text
-
getMaxCacheSize
public long getMaxCacheSize()
Description copied from interface:Cache
Returns the maximum size of the cache.The value should be placed in context of the unit returned by
Cache.getCapacityUnit()
. When, for example, the capacity unit for this cache isCache.CapacityUnit.BYTES
, then a return value of 2048 should be interpreted as this cache having a capacity of 2048 bytes (or 2KB). When the capacity unit isCache.CapacityUnit.ENTITIES
then this cache can contain 2048 elements (irrespective of their byte size).If the cache grows larger than the maximum size, the least frequently used items will be removed.
If the maximum cache size is set to -1, there is no size limit.
- Specified by:
getMaxCacheSize
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the maximum size of the cache.
-
setMaxCacheSize
public void setMaxCacheSize(long maxSize)
Description copied from interface:Cache
Sets the maximum size of the cache.The value should be placed in context of the unit returned by
Cache.getCapacityUnit()
. When, for example, the capacity unit for this cache isCache.CapacityUnit.BYTES
, then a return value of 2048 should be interpreted as this cache having a capacity of 2048 bytes (or 2KB). When the capacity unit isCache.CapacityUnit.ENTITIES
then this cache can contain 2048 elements (irrespective of their byte size).If the cache grows larger than the maximum size, the least frequently used items will be removed. If the maximum cache size is set to -1, there is no size limit.
Note: If using the Hazelcast clustering plugin, this will only take effect if the cache is dynamically configured (not defined in the hazelcast-cache-config.xml file), and will not take effect until the next time the cache is created.
- Specified by:
setMaxCacheSize
in interfaceCache<K extends Serializable,V extends Serializable>
- Parameters:
maxSize
- the maximum size of the cache.
-
getMaxCacheSizeRemark
public String getMaxCacheSizeRemark()
Description copied from interface:Cache
An optional, human-readable remark on the maximum cache capacity configuration.- Specified by:
getMaxCacheSizeRemark
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- an optional human-readable text
-
getMaxLifetime
public long getMaxLifetime()
Description copied from interface:Cache
Returns the maximum number of milliseconds that any object can live in cache. Once the specified number of milliseconds passes, the object will be automatically expired from cache. If the max lifetime is set to -1, then objects never expire.- Specified by:
getMaxLifetime
in interfaceCache<K extends Serializable,V extends Serializable>
- Returns:
- the maximum number of milliseconds before objects are expired.
-
setMaxLifetime
public void setMaxLifetime(long maxLifetime)
Description copied from interface:Cache
Sets the maximum number of milliseconds that any object can live in cache. Once the specified number of milliseconds passes, the object will be automatically expired from cache. If the max lifetime is set to -1, then objects never expire.Note: If using the Hazelcast clustering plugin, this will only take effect if the cache is dynamically configured (not defined in the hazelcast-cache-config.xml file), and will not take effect until the next time the cache is created.
- Specified by:
setMaxLifetime
in interfaceCache<K extends Serializable,V extends Serializable>
- Parameters:
maxLifetime
- the maximum number of milliseconds before objects are expired.
-
addClusteredCacheEntryListener
public String addClusteredCacheEntryListener(@Nonnull ClusteredCacheEntryListener<K,V> listener, boolean includeValues, boolean includeEventsFromLocalNode)
Description copied from interface:Cache
Registers a listener to receive entry events for this cache. To optimize the amount of data that is being processed, this method allows the listener to be registered in a way that suppresses values from being sent to it. In that case, only keys will be included in the event listener invocation.- Specified by:
addClusteredCacheEntryListener
in interfaceCache<K extends Serializable,V extends Serializable>
- Parameters:
listener
- the listener to be registered.includeValues
- defines if the listener should receive the values associated with the events.includeEventsFromLocalNode
- defines if the listener should be invoked for events that originate on the local node.- Returns:
- a unique identifier for the listener which is used as a key to remove the listener
-
removeClusteredCacheEntryListener
public void removeClusteredCacheEntryListener(@Nonnull String listenerId)
Description copied from interface:Cache
Removes a previously registered event listener.- Specified by:
removeClusteredCacheEntryListener
in interfaceCache<K extends Serializable,V extends Serializable>
- Parameters:
listenerId
- the identifier of the listener to be removed.
-
-