org.hibernate.stat
Interface QueryStatistics
- All Superinterfaces:
- java.io.Serializable
- All Known Implementing Classes:
- ConcurrentQueryStatisticsImpl, QueryStatisticsImpl
public interface QueryStatistics
- extends java.io.Serializable
Query statistics (HQL and SQL)
Note that for a cached query, the cache miss is equals to the db count
- Author:
- Gavin King, Alex Snaps
getExecutionCount
long getExecutionCount()
getCacheHitCount
long getCacheHitCount()
getCachePutCount
long getCachePutCount()
getCacheMissCount
long getCacheMissCount()
getExecutionRowCount
long getExecutionRowCount()
getExecutionAvgTime
long getExecutionAvgTime()
getExecutionMaxTime
long getExecutionMaxTime()
getExecutionMinTime
long getExecutionMinTime()
Copyright © 2012. All Rights Reserved.