WCF 线程模型与旧的 ASMX 服务线程模型不同吗?

发布于 2024-10-22 03:37:13 字数 82 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

苍白女子 2024-10-29 03:37:13

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.

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