slow « Update « JPA Q&A





1. Slow Hibernate Save    coderanch.com

Hello, I have a simple JSP page that saves contact information. It's just a single table that saves user fields from query parameters on the JSP form. I'm using all the hibernate defaults and am using the C3PO connection pool. When the user hits submit, however, there's about a 5 second delay before the page is done and is completely refreshed. ...

2. Hibernate save is slow    forum.hibernate.org

Hi All, I have a requirement, where i need to save 5000 records at a time. currently for saving 1000 records it is saving more than 1 minute. in such a case for saving 5000 records it may take around 5 minutes. i am adding the code what i have written. please suggest how can i reduce save time. i am ...

3. Hibernate save is slow    forum.hibernate.org

Hi All, I have a requirement, where i need to save 5000 records at a time. currently for saving 1000 records it is saving more than 1 minute. in such a case for saving 5000 records it may take around 5 minutes. i am adding the code what i have written. please suggest how can i reduce save time. i am ...

4. ant target very slow after updating to hibernate 3    forum.hibernate.org

I have this target in my build.xml : after updating from hibernate 2 to hibernate 3 this task is very slow. Also when I deploy on Tomcat the start is very slow. Can I do something to make ...

5. Mulitple object persist too slow    forum.hibernate.org

Hi, I have a simple class and about 12 which extends from it. An example is here. Code: @Entity @Table(name="HwAtCommand") @Inheritance(strategy = InheritanceType.JOINED) public abstract class Command extends DomainObject implements Comparable{ private String targetAcuIp; @Temporal(TemporalType.TIMESTAMP) private Date timeStamp; @Enumerated private CommandType ...