Changes between Version 4 and Version 5 of NoSqlSupport
- Timestamp:
- Dec 15, 2010, 4:32:19 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NoSqlSupport
v4 v5 139 139 = Transactions = 140 140 141 Not all backends support transactions, at all (e.g., SimpleDB). Some (e.g., App Engine) only support optimistic transactions similar to `SELECT ... FOR UPDATE` (which isn't exactly the same as @commit_on_success because it really locks items for read/write access). Also, not all backends support separate `BEGIN TRANSACTION` and `END TRANSACTION` operations, but instead only have an API for calling a complete function within a transaction.141 Not all backends support transactions, at all (e.g., SimpleDB). Some (e.g., App Engine) only support optimistic transactions similar to `SELECT ... FOR UPDATE` (which isn't exactly the same as @commit_on_success because it really locks items for read/write access). 142 142 143 143 Django-nonrel currently doesn't provide any support for optimistic transactions.