public interface QueryStatistics extends Serializable
Query statistics (HQL and SQL) <p/> Note that for a cached query, the cache miss is equals to the db count
Modifier and Type | Method and Description |
---|---|
long |
getCacheHitCount()
The number of cache hits for this query.
|
long |
getCacheMissCount()
The number of cache misses for this query
|
long |
getCachePutCount()
The number of cache puts for this query
|
long |
getExecutionAvgTime()
What is the average amount time taken to execute this query?
|
double |
getExecutionAvgTimeAsDouble() |
long |
getExecutionCount()
How many times has this query been executed?
|
long |
getExecutionMaxTime()
What is the max amount time taken to execute this query?
|
long |
getExecutionMinTime()
What is the min amount time taken to execute this query?
|
long |
getExecutionRowCount()
How many ResultSet rows have been processed for this query ?
|
long |
getExecutionTotalTime()
How long, cumulatively, have all executions of this query taken?
|
long getExecutionCount()
How many times has this query been executed?
long getExecutionRowCount()
How many ResultSet rows have been processed for this query ?
long getExecutionAvgTime()
What is the average amount time taken to execute this query?
long getExecutionMaxTime()
What is the max amount time taken to execute this query?
long getExecutionMinTime()
What is the min amount time taken to execute this query?
long getExecutionTotalTime()
How long, cumulatively, have all executions of this query taken?
double getExecutionAvgTimeAsDouble()
long getCacheHitCount()
The number of cache hits for this query.
long getCacheMissCount()
The number of cache misses for this query
long getCachePutCount()
The number of cache puts for this query
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.