Hello,
I'm writing an multi-threaded app which will live on two active-active load balanced servers and access a clustered database on another server. Obviously I don't want multiple threads writing to the same records at the same time and SQL provides locking to ensure this doesn't happen. What are the advantages and disadvantages of using mutexes within the application as well even though the active-active configuration means collisions can't be stopped completely?
Thanks, Patrick