Package org.hibernate.stat
Interface NaturalIdCacheStatistics
-
- All Superinterfaces:
java.io.Serializable
@Deprecated public interface NaturalIdCacheStatistics extends java.io.SerializableDeprecated.(since 5.3) UseNaturalIdStatistics- unfortunately the old statistics contracts exposed these by region name, rather than the name of the entity defining the natural-id
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description longgetElementCountInMemory()Deprecated.longgetElementCountOnDisk()Deprecated.default java.util.MapgetEntries()Deprecated.longgetExecutionAvgTime()Deprecated.The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetExecutionCount()Deprecated.Number of times (since last Statistics clearing) the "natural id resolution" query has been executedlonggetExecutionMaxTime()Deprecated.The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetExecutionMinTime()Deprecated.The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetHitCount()Deprecated.longgetMissCount()Deprecated.longgetPutCount()Deprecated.longgetSizeInMemory()Deprecated.
-
-
-
Method Detail
-
getExecutionCount
long getExecutionCount()
Deprecated.Number of times (since last Statistics clearing) the "natural id resolution" query has been executed
-
getExecutionAvgTime
long getExecutionAvgTime()
Deprecated.The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getExecutionMaxTime
long getExecutionMaxTime()
Deprecated.The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getExecutionMinTime
long getExecutionMinTime()
Deprecated.The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getHitCount
long getHitCount()
Deprecated.
-
getMissCount
long getMissCount()
Deprecated.
-
getPutCount
long getPutCount()
Deprecated.
-
getElementCountInMemory
long getElementCountInMemory()
Deprecated.
-
getElementCountOnDisk
long getElementCountOnDisk()
Deprecated.
-
getSizeInMemory
long getSizeInMemory()
Deprecated.
-
getEntries
default java.util.Map getEntries()
Deprecated.
-
-