Hi we have a DAO class includes save() update() delete() etc. each business methods in our stateless classes may have a number of CRUD operations and all occur through that DAO class.
Currently we don't use flush() method for each save() or update() so at the end of the transaction (business method) everything will be flushed automatically. but in some business methods because of their logic we have to put a for-loop to process maybe more than 500 records. in this case, each loop may contains a number of CRUD operations. In my opinion, we need to flush every for example 200 operations have been applied. how to manage this? do you have any idea? is this opinion correct? I appreciate if you share your expriences on this with me. -- View this message in context: http://n2.nabble.com/need-advice-tp1686591p1686591.html Sent from the OpenJPA Users mailing list archive at Nabble.com.
