接口 CollectionStatistics
-
- 所有超级接口:
CacheableDataStatistics,Serializable
- 所有已知实现类:
CollectionStatisticsImpl
public interface CollectionStatistics extends CacheableDataStatistics, Serializable
Collection related statistics- 作者:
- Gavin King, Steve Ebersole
-
-
字段概要
-
从接口继承的字段 org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 longgetFetchCount()Number of times (since last Statistics clearing) this collection has been fetchedlonggetLoadCount()Number of times (since last Statistics clearing) this collection has been loadedlonggetRecreateCount()Number of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted)longgetRemoveCount()Number of times (since last Statistics clearing) this collection has been removedlonggetUpdateCount()Number of times (since last Statistics clearing) this collection has been updated-
从接口继承的方法 org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
-
-
-
方法详细资料
-
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
-
-