Tagged Questions
2
votes
1answer
409 views
NHibernate could not synchronize database state with session
I was checking log files of NHibernate, and found out random errors, as below:
NHibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was ...
1
vote
1answer
115 views
Is it possible to implement field level optimistic concurrency using Entity Framework 4.1 (EF4.1)
All my applications use field level optimistic concurrency.
This works by keeping track of the original database values and performing a 3 way compare between the original values, the updated values ...
0
votes
1answer
209 views
Optimistic locking in web applications
We are building a customer provisioning tool for our multi-tenant application. Multiple users can work on the same configuration and hence we want to avoid conflicts. We know that optimistic locking ...
0
votes
1answer
243 views
@Version in hibernate, when running in cluster env does not work…(Optimistic Lock)
I have an Entity which uses @version on one of its fields, i want to achieve that if two transactions modify this entity in the same time, one will fail(and get Optimistic Lock Exception) and the ...
2
votes
3answers
346 views
In SQL Server 2005 and 2008, how to tell I'm using pessimistic concurrency model or optimistic one?
I know SQL Server 2000 has a pessimistic concurrency model. And the optimistic model was added in SQL Server 2005. So how do I tell whether I'm using the pessimistic concurrency model or the ...
3
votes
1answer
641 views
JPA: How does Read Lock work?
I am trying to understand whats the effect of calling EntityManager.lock(entity, LockModeType.READ). The API documentation sounds very confusing for me.
If I have to concurrent threads and Thread 1 ...
10
votes
2answers
2k views
MongoDB Document Operations are Atomic and Isolated, but Are They Consistent?
I'm in the process of porting my application from an App Engine Datastore to a MongoDB backend and have a question regarding the consistency of "document updates." I understand that the updates on ...
1
vote
4answers
287 views
What happens if two people submit edits at once
This might be a stupid questions but I wanted to know what happens if two users edit some data at once and then both click submit at the same time, I assumed Rails handled requests one after the other ...
0
votes
2answers
225 views
GAE update different fields of the same entity
UserA and UserB are changing objectA.filedA objectA.filedB respectively and at the same time.
Because they are not changing the same field one might think that there are no overlaps.
Is that true?
or ...
1
vote
1answer
161 views
NHibernate overwrite the concurrency in optimistic scenario
I have implemented optimistic locking for concurrency situations.
I have used the version property in the mapping files to link to a integer.
My aim is that if a user tried to save an out-of-date ...
13
votes
5answers
2k views
Java Solutions for Distributed Transactions and/or Data Shared in Cluster
What are the best approaches to clustering/distributing a Java server application ?
I'm looking for an approach that allows you to scale horizontally by adding more application servers, and more ...
0
votes
1answer
298 views
Input on how to keep object map in sync between browser (javascript) and server (asp.net web service/database)?
I have a object map on my server (objects representing Customers, Orders, Items, related to each other, based on content from a database) and want to keep an up to date version of that object map in ...