|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.hibernate.stat.QueryStatistics
Query statistics (HQL and SQL) Note that for a cached query, the cache miss is equals to the db count
Constructor Summary | |
QueryStatistics()
|
Method Summary | |
long |
getCacheHitCount()
Queries retrieved successfully from the cache |
long |
getCacheMissCount()
|
long |
getCachePutCount()
|
long |
getExecutionAvgTime()
average time in ms taken by the excution of this query onto the DB |
long |
getExecutionCount()
queries executed to the DB |
long |
getExecutionMaxTime()
max time in ms taken by the excution of this query onto the DB |
long |
getExecutionMinTime()
min time in ms taken by the excution of this query onto the DB |
long |
getExecutionRowCount()
Number of lines returned by all the executions of this query (from DB) For now, Query.iterate()
and Query.scroll()() do not fill this statistic |
String |
toString()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public QueryStatistics()
Method Detail |
public long getExecutionCount()
public long getCacheHitCount()
public long getCachePutCount()
public long getCacheMissCount()
public long getExecutionRowCount()
Query.iterate()
and Query.scroll()()
do not fill this statistic
public long getExecutionAvgTime()
public long getExecutionMaxTime()
public long getExecutionMinTime()
public String toString()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |