Is there a way to pick-and-choose updates that Hibernate will wrap with a transaction? Inspired by EBay's drive to be transactionless whenever possible, I know of many updates in my application that don't need to be ACID writes. For example, there's an update that consists of a user id and an id for another table. Only one user can insert this record, and I know it doesn't need to be a transaction. So, how do I disable transactions for this one insert, or inserts to this one table?
Edit:
Well, given that my underlying DB is mysql - it looks like I'd have to choose on a table-by-table basis. Any table that didn't need transactions could be set up as myisam instead of innodb. ah, well, not the answer i was looking for.