How to achieve syncronization in loadbalanced multiserver environment

Posted by Anoop on Stack Overflow See other posts from Stack Overflow or by Anoop
Published on 2010-03-18T17:06:12Z Indexed on 2010/03/18 17:11 UTC
Read the original article Hit count: 458

Hi, I have to create a .net web application which would run on more than one front end server which are load balanced. Now I have to use some third party api which is not thread safe so only one thread should call the API at a time so I have to some use syncronization machanism like lock or mutex which provide syncronisation within the process and across the process in machine.Now will lock or mutex work in loadbalanced multiserver environment correctly? If not then is there any mechanism using which I can syncronise all the threads in all the machines??

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about .NET