Transitioning to asynchronous programming model

Posted by Simone on Programmers See other posts from Programmers or by Simone
Published on 2012-11-27T09:02:32Z Indexed on 2012/11/27 11:20 UTC
Read the original article Hit count: 449

our team is mantaining and developing a .NET web service written in C#. We have stress tested the web service's farm and we have evidence that the actual architecture doesn't scale well, as the number of request are constantly increasing.

We analyzed Martin Fowler's conclusion in this article, and our team feels that migrating to an asynchronous programming model such as the one described could be the right direction to point to for our service too. My question is: do you think that this "switch" needs a complete rewrite of the application? Has been someone of you been able to adopt APM without rewriting everything and has some insight to share?

Thank you in advance

© Programmers or respective owner

Related posts about c#

Related posts about .NET