Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在各种博客中读到 WCF 在为异步 WCF 方法处理大量并发异步请求时存在可伸缩性问题。今天在 .Net 4.0 和 IIS 7 世界中仍然如此吗?
通过 WCF 中的异步方法,我的意思是已经为此 WCf 方法实现了异步模式。
我检查了这个链接:WCF Scalability Issues with Async Pattern Method
WCF 不缩放从来都不是真的。事实是应用程序无法扩展。(当然,这仍然是正确的)。
老实说,您什么时候见过无法扩展的语言或框架?请求是独立的,这意味着它们是令人尴尬的并行。这是缩放的完美情况。
阻碍扩展的总是应用程序。当应用程序不是为大规模编写或代码质量低下时,就会发生这种情况。
具体来说:如果您按照预期的方式使用 WCF,并且一直采用异步方式,那么您将扩展到硬件限制。