Read the rules before posting!
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.0
The question is the subj - should I be committing on every response? I've been following the caveat emptor example, and their Filter does "commit()", even though they never even use transactions....
I guess what my real question is - do I need transactions at all? If I don't use transactions, and just use session.updateOrSave(), will my objects be persisted? (that's not the case I've seen so far).
My problem with transactions is that what if I don't want the db connections to be made during the request itself... What if I'd rather use the cache for that moment, and do the rest later?
How can I do that? Transactions seem to force it, and not using transactions doesn't seem to persist it.
Thanks for any material in advance you guys, really appreciate it.