Package org.hibernate.stat
Interface NaturalIdStatistics
- All Superinterfaces:
CacheableDataStatistics,Serializable
- All Known Implementing Classes:
NaturalIdStatisticsImpl
Statistics pertaining to the execution of queries which resolve a natural
id lookup against the database.
- Author:
- Eric Dalquist, Steve Ebersole
-
Field Summary
Fields inherited from interface org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT -
Method Summary
Modifier and TypeMethodDescriptionlongThe average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylongNumber of times (since last Statistics clearing) the "natural id resolution" query has been executedlongThe maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylongThe minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" queryMethods inherited from interface org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
Method Details
-
getExecutionCount
long getExecutionCount()Number of times (since last Statistics clearing) the "natural id resolution" query has been executed -
getExecutionAvgTime
long getExecutionAvgTime()The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query -
getExecutionMaxTime
long getExecutionMaxTime()The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query -
getExecutionMinTime
long getExecutionMinTime()The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-