设置 WCF DuplexChannelFactory 服务的线程关联

发布于 2024-11-09 05:46:02 字数 71 浏览 0 评论 0原文

是否可以为 WCF 服务设置线程关联性?当我实例化我的服务时,我希望它的所有处理都限制在单个核心上。

提前致谢。

Is it possible to set the thread affinity for a WCF service? When I instantiate my service I want all of it's processing to be constrained to a single core.

Thanks in advance.

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

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

发布评论

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

评论(1

木緿 2024-11-16 05:46:02

您可以将 ConcurrencyMode 设置为 ConcurrencyMode.Single,将 ConcurrencyMode 设置为 ConcurrencyMode.Reentrant。

WCF InstanceContextMode、ConcurrencyMode 和服务器端线程

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Reentrant)]
public class Service : IService
{
    // Implementation code
}

您还可以设置 MaxConcurrentCalls、MaxConcurrentInstances 和 MaxConcurrentSessions。

WCF 中的限制

You can set ConcurrencyMode to ConcurrencyMode.Single and ConcurrencyMode to ConcurrencyMode.Reentrant.

WCF InstanceContextMode, ConcurrencyMode, and Server-side Threading

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Reentrant)]
public class Service : IService
{
    // Implementation code
}

You can also set MaxConcurrentCalls, MaxConcurrentInstances and MaxConcurrentSessions.

Throttling in WCF.

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