WCF 线程模型与旧的 ASMX 服务线程模型不同吗?
ASMX 的运行就像您使用/重用 IIS 线程访问网页一样。那么WCF呢?我会得到一个不同的实例吗?每个请求的线程(旧的或新的无关)(假设没有会话)?
ASMX runs just like you'd access a web page use/reuse IIS thread. What about WCF ? Do I get a different instance & thread(old or new is irrelevant) per request (assume no session) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WCF 比 ASMX 更可配置,并且可以在 IIS 以外的主机中运行。
我认为您可以假设线程将来自线程池。
实例化将由服务的已配置 InstanceContextMode 控制。
重入由配置的 ConcurrencyMode 控制服务。
WCF is more configurable than ASMX, and may run in hosts other than IIS.
I think you can assume that threads will come from the thread pool.
Instancing will be controlled by the configured InstanceContextMode of the service.
Re-entrancy is controlled by the configured ConcurrencyMode of the service.