Tagged Questions

3
votes
1answer
812 views

How to let NHibernate retry deadlocked transactions when using session per request?

What pattern/architecture do you use in a 3-tiered application using NHibernate that needs to support retries on transaction failures, when you are using the Session-Per-Request pattern? (as ISession ...
2
votes
2answers
634 views

difference between deadlock and livelock

can somebody please explain what is the difference between deadlock and livelock, with small examples (examples I mean code), thanks in advance
0
votes
5answers
2k views

Is the C# “lock” construct rendered obselete by Interlocked.CompareExchange<T>?

Summary: It seems to me that: wrapping fields representing a logical state into a single immutable consumable object updating the object's authoritative reference with a call to ...