ADAM 允许多少个并发连接?

发布于 2024-08-16 07:52:30 字数 117 浏览 4 评论 0原文

ADAM 的并发连接数是否有限制。是可配置的吗?

-- 同一用户可以建立多少个并发连接? -- 可以建立多少个来自不同用户的并发连接?

任何帮助/指示将不胜感激。

谢谢。

Is there a limit on number of concurrent connections to ADAM. Is is configurable?

-- How many concurrent connections from a same user could be established?
-- How many concurrent connections from different users could be established?

Any help/pointers will be appreciated.

Thanks.

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

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

发布评论

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

评论(1

蓝海 2024-08-23 07:52:30

理论上的限制是 65534。在实践中,我见过单个服务器的并发数约为 25,000。如果这不能满足您的需求,复制和负载平衡 ADAM 非常容易。

每个与 ADAM 的连接都会占用一个临时端口,Windows 默认将其限制为 5,000 个。您可以在注册表中更改高达65534的值。该池由任何应用程序共享在服务器上使用 TCP/IP。

此外,每个连接在用户使用完毕后并不会立即消失。它进入 TIME_WAIT 状态并仍然使用您的端口之一。请参阅本文了解详细信息

The theoretical limit is 65534. In practice I have seen 25,000 or so concurrently for a single server. If this doesn't meet your needs, replicating and load balancing ADAM is quite easy.

Each connection to ADAM uses up an ephemeral port and Windows by default limits them to 5,000. You can change that in the registry as high as 65534. This pool is shared by any application using TCP/IP on the server.

Also, each connection doesn't go away right after the user is done with it. It goes into a TIME_WAIT state and still uses one of your ports. See this article for details.

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