asp.net-iis7 并发请求

发布于 2024-12-11 23:52:45 字数 140 浏览 0 评论 0原文

我正在使用 ASP.NET 和 IHttpHandler 模块开发 Rest Web 服务。默认情况下,不允许并发请求,在同一用户完成前一个请求之前,不会继续处理新请求。我想将同一用户的并发请求增加到三(3)。怎么做呢?可以从 web.config 文件进行控制吗?

I am developing Rest web service using ASP.NET and IHttpHandler module. By default concurrent requests is not allowed, new request is not proceeded until previous is finished from the same user. I would like to increase concurrent request for the same user to three(3). How to do that? Is that possible to control from web.config file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

×眷恋的温暖 2024-12-18 23:52:45

事实上,ASP.NET 支持每个用户的并发请求。您只需禁用要允许并发请求的会话即可。

如果您在服务中使用会话,并且想要支持并发请求,则需要找出替代方案。

ASP.NET does, in fact, support concurrent requests per user. You just need to disable Sessions where you want to allow the concurrent requests.

If you use sessions in your services, you'll need to figure out an alternative if you want to support concurrent requests.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文