Serialized Form
serialVersionUID: 1098572221246444544L
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Custom serialization read logic
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Custom serialization write logic
- Throws:
java.io.IOException
key
java.lang.Object key
- the cache key.
value
java.lang.Object value
- the value.
version
long version
- version of the element. System.currentTimeMillis() is used to compute version for updated elements. That
way, the actual version of the updated element does not need to be checked.
hitCount
long hitCount
- The number of times the element was hit.
timeToLive
int timeToLive
- The amount of time for the element to live, in seconds. 0 indicates unlimited.
timeToIdle
int timeToIdle
- The amount of time for the element to idle, in seconds. 0 indicates unlimited.
lastUpdateTime
long lastUpdateTime
- If there is an Element in the Cache and it is replaced with a new Element for the same key,
then both the version number and lastUpdateTime should be updated to reflect that. The creation time
will be the creation time of the new Element, not the original one, so that TTL concepts still work.
cacheDefaultLifespan
boolean cacheDefaultLifespan
mimeType
java.lang.String mimeType
value
byte[] value
serialVersionUID: 3606940454221918725L
cacheName
java.lang.String cacheName
statisticsAccuracy
int statisticsAccuracy
cacheHits
long cacheHits
onDiskHits
long onDiskHits
inMemoryHits
long inMemoryHits
misses
long misses
size
long size
memoryStoreSize
long memoryStoreSize
diskStoreSize
long diskStoreSize
averageGetTime
float averageGetTime
evictionCount
long evictionCount
serialVersionUID: 2732730630423367732L
name
java.lang.String name
intValue
int intValue
|
Package net.sf.ehcache.config |
|
Package net.sf.ehcache.constructs.blocking |
|
Package net.sf.ehcache.distribution |
serialVersionUID: 4920508630517373246L
socketTimeoutMillis
int socketTimeoutMillis
serialVersionUID: -293616939110963629L
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
- Throws:
java.io.IOException
event
int event
- The event component.
key
java.io.Serializable key
- The key component.
wasElementNotNull
boolean wasElementNotNull
- Used to check if the value has been GCed
hostname
java.lang.String hostname
rmiRegistryPort
java.lang.Integer rmiRegistryPort
remoteObjectPort
java.lang.Integer remoteObjectPort
cache
Ehcache cache
|
Class net.sf.ehcache.distribution.RMICachePeer_Stub extends java.rmi.server.RemoteStub implements Serializable |
serialVersionUID: 2L
|
Package net.sf.ehcache.hibernate.management.impl |
nodeCount
int nodeCount
region
java.lang.String region
- region
shortName
java.lang.String shortName
- shortName
hitCount
long hitCount
- shortName
missCount
long missCount
- missCount
putCount
long putCount
- putCount
hitRatio
double hitRatio
- hitRatio
elementCountInMemory
long elementCountInMemory
- elementCountInMemory
elementCountOnDisk
long elementCountOnDisk
- elementCountOnDisk
elementCountTotal
long elementCountTotal
- elementCountTotal
hitLatency
long hitLatency
- hitLatency
loadLatency
long loadLatency
- loadLatency
latencyCacheHit
long latencyCacheHit
- latencyCacheHit
latencyCacheTime
long latencyCacheTime
- latencyCacheTime
latencyDbHit
long latencyDbHit
- latencyDbHit
latencyDbTime
long latencyDbTime
- latencyDbTime
roleName
java.lang.String roleName
- roleName
shortName
java.lang.String shortName
- shortName
loadCount
long loadCount
- loadCount
fetchCount
long fetchCount
- fetchCount
updateCount
long updateCount
- updateCount
removeCount
long removeCount
- removeCount
recreateCount
long recreateCount
- recreateCount
name
java.lang.String name
- name
shortName
java.lang.String shortName
- shortName
loadCount
long loadCount
- loadCount
updateCount
long updateCount
- updateCount
insertCount
long insertCount
- insertCount
deleteCount
long deleteCount
- deleteCount
fetchCount
long fetchCount
- fetchCount
optimisticFailureCount
long optimisticFailureCount
- optimisticFailureCount
query
java.lang.String query
- query
cacheHitCount
long cacheHitCount
- cacheHitCount
cacheMissCount
long cacheMissCount
- cacheMissCount
cachePutCount
long cachePutCount
- cachePutCount
executionCount
long executionCount
- executionCount
executionRowCount
long executionRowCount
- executionRowCount
executionAvgTime
long executionAvgTime
- executionAvgTime
executionMaxTime
long executionMaxTime
- executionMaxTime
executionMinTime
long executionMinTime
- executionMinTime
|
Package net.sf.ehcache.hibernate.strategy |
serialVersionUID: 1L
value
java.lang.Object value
version
java.lang.Object version
timestamp
long timestamp
serialVersionUID: 2L
sourceUuid
java.util.UUID sourceUuid
lockId
long lockId
version
java.lang.Object version
timeout
long timeout
concurrent
boolean concurrent
multiplicity
int multiplicity
unlockTimestamp
long unlockTimestamp
|
Package net.sf.ehcache.management |
serialVersionUID: 3477287016924524437L
objectName
javax.management.ObjectName objectName
serialVersionUID: -8944774509593267228L
objectName
javax.management.ObjectName objectName
serialVersionUID: 8085302752781762030L
statistics
Statistics statistics
objectName
javax.management.ObjectName objectName
lastUpdated
long lastUpdated
|
Package net.sf.ehcache.management.provider |
|
Package net.sf.ehcache.store |
myName
java.lang.String myName
|
Package net.sf.ehcache.store.chm |
serialVersionUID: 7249069246763182397L
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitute the ConcurrentHashMap instance from a
stream (i.e., deserialize it).
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Save the state of the ConcurrentHashMap instance to a
stream (i.e., serialize it).
- Serial Data:
- the key (Object) and value (Object)
for each key-value mapping, followed by a null pair.
The key-value mappings are emitted in no particular order.
- Throws:
java.io.IOException
segmentMask
int segmentMask
- Mask value for indexing into segments. The upper bits of a
key's hash code are used to choose the segment.
segmentShift
int segmentShift
- Shift value for indexing within segments.
segments
net.sf.ehcache.store.chm.ConcurrentHashMap.Segment<K,V>[] segments
- The segments, each of which is a specialized hash table
rndm
java.util.Random rndm
|
Package net.sf.ehcache.transaction.manager.btm |
xaResourceHolders
java.util.List<E> xaResourceHolders
recoveryXAResourceHolder
bitronix.tm.resource.common.RecoveryXAResourceHolder recoveryXAResourceHolder
|
Package net.sf.ehcache.transaction.xa |
|
Package net.sf.ehcache.util.counter |
value
java.util.concurrent.atomic.AtomicLong value
|
Package net.sf.ehcache.util.counter.sampled |
history
CircularLossyQueue<T> history
- The history of this counter
resetOnSample
boolean resetOnSample
- Should the counter reset on each sample?
samplerTask
java.util.TimerTask samplerTask
intervalMillis
long intervalMillis
numeratorValue
long numeratorValue
denominatorValue
long denominatorValue
counterValue
long counterValue
timestamp
long timestamp
|
Package net.sf.ehcache.writer |
true