Package org.hibernate.stat
Interface SessionStatistics
-
public interface SessionStatistics
Information about the first-level (session) cache for a particular session instance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCollectionCount()
Get the number of collection instances associated with the sessionjava.util.Set
getCollectionKeys()
Get the set of all CollectionKeysint
getEntityCount()
Get the number of entity instances associated with the sessionjava.util.Set
getEntityKeys()
Get the set of all EntityKeys
-
-
-
Method Detail
-
getEntityCount
int getEntityCount()
Get the number of entity instances associated with the session
-
getCollectionCount
int getCollectionCount()
Get the number of collection instances associated with the session
-
getEntityKeys
java.util.Set getEntityKeys()
Get the set of all EntityKeys- See Also:
EntityKey
-
getCollectionKeys
java.util.Set getCollectionKeys()
Get the set of all CollectionKeys- See Also:
CollectionKey
-
-