2
votes
1answer
296 views
Optimistic concurrency in ADO.NET Entity Framework
I found an MSDN article that describes how EF handles concurrency when saving changes:
By default [...] Object Services saves object
changes to the database without
checking for concurrency. …
1
vote
3answers
312 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
0answers
83 views
Under what circumstances will Active Record fail to enforce optimistic locking?
I watched in horror this morning as a script, running on two different machines, happily loaded, updated, and saved. I'm running ruby 1.8.6, AR 2.2.2. I started playing with some test cases and …
1
vote
5answers
129 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 …
2
votes
1answer
153 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 …
9
votes
4answers
3k 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 …
