persist « Performance « JPA Q&A





1. Best practice in ColdFusion ORM    stackoverflow.com

A question of ColdFusion ORM We are using ColdFusion 9 for the past 6 months and while we've used some of the new features, ORM is something we've avoided because we usually ...

2. object taking time to get persisted in hibernate    stackoverflow.com

I have three entities, in which i try to save only 1 entity right now. All the three entities are shown below :- 1. Student Entity

     <class name="com.school.Student" ...

3. JPA Native Queries versus 'pure' JPA persistence    stackoverflow.com

I have a scenario where in I need to keep a log of all incoming files (flat, xml) to an application. This log table is hardly used, except for fault investigation ...

4. Persistence: Hibernate vs iBATIS vs JDBC: Performance    coderanch.com

I carried out a rudimentry test to compare memory utilization by Hibernate (utilizing full resources vs only using connection manager), iBATIS and JDBC. Here is the order of call (if that matters): 1. Plain JDBC call 2. Hibernate connection manager 3. Hibernate 4. iBATIS Each flow created a new connection but the memory calculation only inlcluded portion of code that is ...