Pattern « Performance « JPA Q&A





1. Patterns of Hibernate usage that affect the performance    forum.hibernate.org

Hello, I'm working on a small research. I want to know if it is possible to find patterns of Hibernate usage in source code, that (can) affect the Hibernate performance (in a bad way), by static code analysis. If it is then, I want to know what these patterns are and how I can find them with static code analysis. I'm ...

2. Performance of getCurrentSession patterns    forum.hibernate.org

I've checked out the new getCurrentSession functionality and its great. I have a performance question though. The sessions are bound to transactions, so the following is needed tx1 getCurrentSession (s1 is returned) insert object a tx1.commit tx2 getCurrentSession (s2 is returned) load object a update object a tx2.commit tx3 getCurrentSession (s3 is returned) load object a update object a tx3.commit the ...

3. Open Session In View Pattern and Performance    forum.hibernate.org