cascade « Performance « JPA Q&A





1. Hibernate: Performance of cascade="save-update" vs "none"    stackoverflow.com

Is there any performance difference between using cascade="save-update" vs "none" within same session for a one to many, where one entity keeps a collection of another entity? Or is it only ...

2. Performance of a cascade save/update vs saving other side    forum.hibernate.org

We have a class named Consumer: Code: .... ....

3. Cascade Performance issue    forum.hibernate.org

Hi , I have a design/performance problem due to cascade(save-update) - Stock object has a collection of Options (1000+) objects. Stock also has a Map of Indicator objects(about 20) Both the above have cascade="save-update" Now I add new Indicators to Stock's map and save Stock(to cascade Indicators). This obviously cascades all Option objects too. The save process is very very slow ...