When coordinating updates from multiple database sessions, optimistic locking is a strategy that assumes all updates can complete without conflict. It does not hold locks on any records while the user is editing, but checks to see if any other edits have occurred when the user tries to commit the ...
1
vote
2answers
6k views
Hibernate (JPA): how to handle StaleObjectStateException when several object has been modified and commited
Consider the scenario:
A Db transaction envolving more than one row from different tables with versioning.
For example:
A shopLists and products. Where a shopList may contain products (with their ...
11
votes
3answers
2k views
How do I avoid a race condition in my Rails app?
I have a really simple Rails application that allows users to register their attendance on a set of courses. The ActiveRecord models are as follows:
class Course < ActiveRecord::Base
has_many ...
9
votes
1answer
10k views
How to use the Hibernate optimistic locking version property on the front end?
Optimistic locking using the version attribute for an entity works fine and is easy to implement:
<version property="VERSION" type="int" column="EX_VERSION" />
The entity has a property of ...
4
votes
1answer
4k views
Optimistic Locking in Hibernate by default
I have one question about optimistic locking in Hibernate. I am trying to go deep inside optimistic locking with Hibernate, but I have one doubt. Hibernate uses version approach (integer or timestamp) ...
3
votes
3answers
94 views
PHP/MySQL/jQuery Pessimistic Locking of Record
I've been thinking about developing some simple record locking for an application I'm involved in. There are a few users who will take literally hours to complete an edit of a record. This causes ...
2
votes
1answer
2k views
How to overcome StaleObjectStateException in grails Service
I've introduced a TransactionService that I use in my controllers to execute optimistic transactions. It should
try to execute a given transaction (= closure)
roll it back if it fails and
try it ...
3
votes
2answers
798 views
Can Hibernate's @Version consider changes in related entities?
I have 2 entities: Parent and Child in a one-to-many relationship. The Parent is versioned, i.e. has a @Version field. My goal is to synchronize changes to both Parent and Child entities on the ...
2
votes
0answers
319 views
How to use optional attributes in web service update messages (DTOs)?
BACKGROUND
Assume you have a (SOAP) web service, BookService, managing books in a library. In the information model assume that the Book entity has the following attributes:
id
author
publisher
...
2
votes
2answers
600 views
RavenDB UseOptimisticConcurrency in Config?
Is there a way to set optimistic concurrency to true in Raven.Server.exe.config? Or, can it somehow be applied at the database level? On RavenDB's site, I see a couple of mentions of setting ...
2
votes
1answer
751 views
Basic question about optimistic lock (Hibernate)
I am new to use "optimistic locking" mechanism - I am using hibernate (in Jboss) and Container Managed Transaction (CMT).
I want to handle the scenario when, between my entity-read and entity-update ...
1
vote
2answers
445 views
Is there an alternative to ISession.Merge() that doesn't throw when using optimistic locking?
I've been trying to use ISession.Merge() to keep coherence between two sessions, but it fails when the merged instance has a higher Version property than the one loaded in the session (with a ...