Tagged Questions

37
votes
4answers
23k views

Optimistic vs. Pessimistic locking

I understand the differences between optimistic and pessimistic locking*. Now could someone explain to me when I would use either one in general? And does the answer to this question change ...
1
vote
3answers
816 views

Why does activerecord optimistic locking work only once per row?

Somehow, I always get these on Fridays. My earlier question was regarding the same problem, but I can now narrow things down a bit: I've been playing with this all day, trying to make sense of it. ...
0
votes
1answer
158 views

How to retry update after OptimisticLockException in the same TX

In my program i need to be able to retry row update after the row was updated by an external transaction. Hibernate/JPA throws OptimisticLockException which i catch. Upon retry i try to re-read the ...
0
votes
1answer
612 views

Does hibernate a default optimistic locking for detached objects?

I have an application that does: void deleteObj(id){ MyObj obj = getObjById(id); if (obj == null) { throw new CustomException("doesn't exists"); } em.remove(obj);//em is a ...