Tagged Questions
2
votes
1answer
71 views
Table indexes/pk for Optimistic Locking in JPA
What is the best practice for defining table indexes for entities supporting optimistic locking?
For sure, entity id has to be part of some index in DB to enable fast lookups by id. What about ...
1
vote
2answers
3k views
How to code optimistic and pessimistic locking from java code
I know what optimistic and pessimistic locking is, but when you write a java code how do you do it? Suppose I am using Oracle with Java, do I have any methods in JDBC that will help me do that? How ...
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 ...