I know that AsyncController created for multithreading goals. But i don't see any difference of behavior the Controller class and AsyncController class. For example HomeController:
public String First()
{
Thread.Sleep(5000);
return "First";
}
public String Second()
{
return "Second";
}
I try to execute /Home/First/ request in first tab of firefox, and after that i try to execute /Home/Second/ and i see that Second action executed immediately without any delay and without waiting for First action. It mean that requests executed in parallel threads and Controller class have multithreading support. And when i replace Controller with AsyncController i don't noticing the changes.
So my question is: what is the benefit of usage AsyncController, in which cases i should use that class?