Im mainly looking at the EntityStatics (http://www.hibernate.org/hib_docs/v3/api/org/hibernate/stat/EntityStatistics.html). I can see a lot of fetch, loads and updates and i cant find anywhere that says what the difference between them are.
Im mainly looking at the EntityStatics ( http://www.hibernate.org/hib_docs/v3/api/org/hibernate/stat/EntityStatistics.html ). I can see a lot
Share
Working backward through the code, the fetch counter only gets incremented when the entity is retrieved from the datasource (as opposed to any caches) –
The load counter was called from too many places to track them all down, but it looks like it gets incremented any time the entity gets loaded, whether from the datasource or the caches.