System.Net 连接管理的效果

发布于 2024-09-16 15:17:21 字数 240 浏览 3 评论 0原文

  <system.net>
    <connectionManagement>
      <add maxconnection="1000" address="*"/>
    </connectionManagement>
  </system.net>

有人可以告诉我此设置是否会影响我的 WCF (basicHttpBinding) 服务吗?

  <system.net>
    <connectionManagement>
      <add maxconnection="1000" address="*"/>
    </connectionManagement>
  </system.net>

Can someone tell me if this setting affects my WCF (basicHttpBinding) services?

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

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

发布评论

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

评论(3

两仪 2024-09-23 15:17:21

不,

来自 MSDN。

该类用于指定
最大并发数
连接到远程计算机。

No.

From MSDN.

This class is used to specify the
maximum number of simultaneous
connections to a remote computer.

冷了相思 2024-09-23 15:17:21

好的,对于 WCF 来说,它看起来像这样:

<behavior name="CommonServices_Behavior">
  <serviceDebug includeExceptionDetailInFaults="false" />
  <serviceMetadata httpGetEnabled="true" />
  <serviceThrottling maxConcurrentCalls="100" maxConcurrentSessions="50" maxConcurrentInstances="50" />
</behavior>

Okay, for WCF it would look something like this:

<behavior name="CommonServices_Behavior">
  <serviceDebug includeExceptionDetailInFaults="false" />
  <serviceMetadata httpGetEnabled="true" />
  <serviceThrottling maxConcurrentCalls="100" maxConcurrentSessions="50" maxConcurrentInstances="50" />
</behavior>
病女 2024-09-23 15:17:21

一般情况下,最大连接数是你的服务器设置的一个值
设置可以支持。这基于您的服务器的物理构成,
服务器承受的正常负载以及您的互联网连接速度。
没有一种价值观适合所有人。

请参阅http://msdn.microsoft.com/en-us/library/fb6y0fyc .aspx 了解更多详细信息

Generally, the maximum amount of connections is a value that your server
setup can support. This is based on the physical makeup of your server(s),
the normal load the server(s) are under, and your Internet connection speed.
There is no one value that is right for everyone.

refer http://msdn.microsoft.com/en-us/library/fb6y0fyc.aspx for more details

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