设置 WCF DuplexChannelFactory 服务的线程关联
是否可以为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 ConcurrencyMode 设置为 ConcurrencyMode.Single,将 ConcurrencyMode 设置为 ConcurrencyMode.Reentrant。
WCF InstanceContextMode、ConcurrencyMode 和服务器端线程
您还可以设置 MaxConcurrentCalls、MaxConcurrentInstances 和 MaxConcurrentSessions。
WCF 中的限制。
You can set ConcurrencyMode to ConcurrencyMode.Single and ConcurrencyMode to ConcurrencyMode.Reentrant.
WCF InstanceContextMode, ConcurrencyMode, and Server-side Threading
You can also set MaxConcurrentCalls, MaxConcurrentInstances and MaxConcurrentSessions.
Throttling in WCF.