gpt4 book ai didi

.NET 客户端的 SignalR 连接限制

转载 作者:行者123 更新时间:2023-12-02 21:02:29 25 4
gpt4 key购买 nike

我制作了一个实验性解决方案,其中包括 WebMvc(SignalR 客户端)->(SignalR Hub)WebApi。

每次新用户连接到 WebMvc 网站时,它都会创建到 WebApi 的新集线器连接。这意味着如果有 10K 用户连接到网站,那么 WebMvc 将创建 10K 到 SignalR Hub 的连接。

WebMvc 应用程序有连接限制吗?

最佳答案

最大并发连接数取决于您的设置。
对于 SignalR,限制取决于您的 IIS 配置:

  • 每个应用程序的最大并发请求

    Increasing the number of concurrent IIS requests will increase server resources available for serving requests. The default value is 5000;

  • 应用程序池队列长度

    This is the maximum number of requests that Http.sys queues for the application pool. When the queue is full, new requests receive a 503 “Service Unavailable” response. The default value is 1000;

SignalR Performance
Optimizing IIS Performance

关于.NET 客户端的 SignalR 连接限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37571002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com