Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
1answer
765 views

fluent nhibernate automap version column

Current code in my convention: public void Apply(FluentNHibernate.Conventions.Instances.IVersionInstance instance) { instance.Column("RowVersion"); instance.Not.Nullable(); ...
2
votes
1answer
321 views

Business application - pessimistic concurrency using messaging

We are using messaging in a project of ours to implement pessimistic concurrency. This means that if messaging goes down (channel goes down), concurrency goes down. Is this done in other business ...
1
vote
0answers
53 views

Optimistic synchronization of replicated objects in javascript

I'm programming a browser application (html5+websockets+css3+js preferred) that enables users to concurrently access (read, write) attributes of the same object. To create a real-time experience I'd ...
1
vote
3answers
812 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. ...
1
vote
5answers
196 views

Improving worldwide website performance without using a CDN?

CDNs seem like a tremendously brute-force approach to improving website performance across the world, since they use some thousands of machines close to the end-user to ensure good throughput. Are ...
0
votes
1answer
44 views

Solving Nhibernate concurrency issues

I am currently thinking about implementing an application with NHibernate and I would like to be able to solve concurrency issues by showing the user which fields have changed since he retrieved the ...
0
votes
0answers
49 views

Entity Framework Optimistic Concurrency Not Failing

I'm having some problems getting EF's Optimistic Concurrency(version 4.0) to fail with the following example. .Net 4.0/C# In the database I have the following table: Create Table Work ( Id int ...
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
607 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 ...
0
votes
1answer
399 views

how to catch OptimisticLockException in web layer

I'm having one issue that is how to catch OptimisticLockException in web layer (.war code) when it is raised by the EJB layer. We are using JEE5, GlassFishV2.1 and JPA (with TopLinks)and Container ...