I have implemented recently into my ASP.NET application the OutputCache.
I want to test this application by accessing 100-200 times simultaneously to see if the cache make good job.
I have installed RedGate .NET Memory Profiler and ANTS Performance Profiler to see what’s happens with cache. I see that cache occupies some size in memory and page loads faster than before implementing cache (that’s normal).
Can you tell me what tools I need to test my ASP.NET MVC3 application by being accessed 100-200 times simultaneously ? Something like server stress test.
If I understand your question right you want to stress test your website? You can take a look at Web Capacity Analysis Tool (WCAT)
Also take a look at this website http://blogs.msdn.com/b/alikl/archive/2008/05/05/asp-net-performance-engineering-stress-test-your-architecture-design-and-code.aspx
Hope this helps.