-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Milestone
Description
Make a distinction between reading objects and retrieving objects to modify them. In the latter case we want to make sure only one transaction can do this at a time (pessimistic locking) or throw an exception when there is an attempt to store an object that is changed in the meantime (optimistic locking),
For this to work we need to have transactions (need to know when to release the locks).