Tagged Questions

1
vote
1answer
151 views

How to don incremental multi user updates with NHibernate

I use nhibernate as my orm and i am trying to implement something that looks straightforward but has become unneccessarily difficult. It concerns how to implement concurrent updates to an entity where ...
1
vote
3answers
1k views

multi-user application record locking - best method?

I'm developing a php / mysql application that handles multiple simultaneous users. I'm thinking of the best approach to take when it comes to locking / warning against records that are currently being ...
1
vote
3answers
829 views

Pessimistic versus Optimistic Concurrency (Locking versus Feedback)

I'm building an application with the following criteria: work items: items that need to be manually worked via the web by users (short one page form) Multiple users working 'work items' Each user ...