org.hibernate.stat.SecondLevelCacheStatistics Maven / Gradle / Ivy
//$Id: SecondLevelCacheStatistics.java 7093 2005-06-09 06:33:06Z oneovthafew $
package org.hibernate.stat;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.hibernate.cache.Cache;
import org.hibernate.cache.CacheKey;
/**
* Second level cache statistics of a specific region
*
* @author Gavin King
*/
public class SecondLevelCacheStatistics extends CategorizedStatistics {
private transient Cache cache;
long hitCount;
long missCount;
long putCount;
SecondLevelCacheStatistics(Cache cache) {
super( cache.getRegionName() );
this.cache = cache;
}
public long getHitCount() {
return hitCount;
}
public long getMissCount() {
return missCount;
}
public long getPutCount() {
return putCount;
}
public long getElementCountInMemory() {
return cache.getElementCountInMemory();
}
public long getElementCountOnDisk() {
return cache.getElementCountOnDisk();
}
public long getSizeInMemory() {
return cache.getSizeInMemory();
}
public Map getEntries() {
Map map = new HashMap();
Iterator iter = cache.toMap().entrySet().iterator();
while ( iter.hasNext() ) {
Map.Entry me = (Map.Entry) iter.next();
map.put( ( (CacheKey) me.getKey() ).getKey(), me.getValue() );
}
return map;
}
public String toString() {
StringBuffer buf = new StringBuffer()
.append("SecondLevelCacheStatistics")
.append("[hitCount=").append(this.hitCount)
.append(",missCount=").append(this.missCount)
.append(",putCount=").append(this.putCount);
//not sure if this would ever be null but wanted to be careful
if (this.cache != null) {
buf.append(",elementCountInMemory=").append(this.getElementCountInMemory())
.append(",elementCountOnDisk=").append(this.getElementCountOnDisk())
.append(",sizeInMemory=").append(this.getSizeInMemory());
}
buf.append(']');
return buf.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy