Package org.hibernate.stat
Interface CollectionStatistics
- All Superinterfaces:
CacheableDataStatistics
,Serializable
- All Known Implementing Classes:
CollectionStatisticsImpl
Collection-related statistics.
-
Field Summary
Fields inherited from interface org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT
-
Method Summary
Modifier and TypeMethodDescriptionlong
Number of times (since last Statistics clearing) this collection has been fetchedlong
Number of times (since last Statistics clearing) this collection has been loadedlong
Number of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted)long
Number of times (since last Statistics clearing) this collection has been removedlong
Number of times (since last Statistics clearing) this collection has been updatedMethods inherited from interface org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
Method Details
-
getLoadCount
long getLoadCount()Number of times (since last Statistics clearing) this collection has been loaded -
getFetchCount
long getFetchCount()Number of times (since last Statistics clearing) this collection has been fetched -
getRecreateCount
long getRecreateCount()Number of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted) -
getRemoveCount
long getRemoveCount()Number of times (since last Statistics clearing) this collection has been removed -
getUpdateCount
long getUpdateCount()Number of times (since last Statistics clearing) this collection has been updated
-