如何在asp.net上模拟并发Web请求?
我想在许多用户请求我的页面时测试我的网站的性能。有什么办法可以模拟很多请求吗?谢谢!
I want to test my website's performance when many users are requesting my pages. Is there any way to simulate many requests? thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有 Visual Studio 2010 Ultimate:
演练:创建并运行包含 Web 性能的负载测试测试
使用 Visual Studio 2010 进行负载测试
If you have Visual Studio 2010 Ultimate:
Walkthrough: Creating and Running a Load Test Containing Web Performance Tests
Load Testing with Visual Studio 2010
对于我之前的工作,我必须测试 ASP.NET Web 服务的性能,我所做的就是编写一个具有多线程的简单
WinForm
应用程序,每个线程使用HttpWebRequest 向我的 Web 服务发出请求
。您可能需要增加 IIS 上并发请求的限制,据我所知,默认情况下为 2。
For my previous job, I had to test the performance of our asp.net webservices and what I did was wrote a simple
WinForm
application with multithreading and every thread make a request to my webservice usingHttpWebRequest
.You may have to increase the limit for concurrent requests on IIS, which as far as i know is 2 by default.