Package org.hibernate.stat
Interface SessionStatistics
- All Known Implementing Classes:
SessionStatisticsImpl
public interfaceSessionStatistics
Information about the first-level (session) cache for a particular instance of
Session.Method Summary
Modifier and TypeMethodDescriptionintThe number of collection instances associated with the session.Set<?>The set of allCollectionKeys currently held within the persistence context.intThe number of entity instances associated with the session.Set<?>The set of allEntityKeys currently held within the persistence context.
Method Details
getEntityCount
int getEntityCount()The number of entity instances associated with the session.getCollectionCount
int getCollectionCount()The number of collection instances associated with the session.getEntityKeys
Set<?> getEntityKeys()The set of allEntityKeys currently held within the persistence context.getCollectionKeys
Set<?> getCollectionKeys()The set of allCollectionKeys currently held within the persistence context.