Package org.hibernate.stat
Interface NaturalIdCacheStatistics
-
- All Superinterfaces:
java.io.Serializable
@Deprecated public interface NaturalIdCacheStatistics extends java.io.Serializable
Deprecated.(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 long
getElementCountInMemory()
Deprecated.long
getElementCountOnDisk()
Deprecated.default java.util.Map
getEntries()
Deprecated.long
getExecutionAvgTime()
Deprecated.The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylong
getExecutionCount()
Deprecated.Number of times (since last Statistics clearing) the "natural id resolution" query has been executedlong
getExecutionMaxTime()
Deprecated.The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylong
getExecutionMinTime()
Deprecated.The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylong
getHitCount()
Deprecated.long
getMissCount()
Deprecated.long
getPutCount()
Deprecated.long
getSizeInMemory()
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.
-
-