IIS - 创建新线程以提高线程池性能
在我的书“MCTS 自定进度培训套件(考试 70-515):使用 MS .NET Framework 4 进行 Web 应用程序开发”中,它指出:(
上下文是 IIS 6 和 7)
线程池可能很棘手。什么时候 实现异步处理程序和 网页,使用性能测试 工具来验证性能 重负载。有时开销 由异步编程引入 可以抵消好处。无论 性能的提高取决于很多因素 应用程序和网络方面 服务器配置。 一个可靠的方法 获得性能收益就是创建一个 新线程。只有一个通用的 每个语言运行时 (CLR) 线程池 AppDomain,所以你必须确保不 只需使用相同的线程 ASP.NET 会使用。相反,创建您的 拥有。
如何创建一个新线程而不重用当前线程池中的相同线程?
In my book "MCTS Self-Paced Training Kit (Exam 70-515):Web Applications Development with MS .NET Framework 4, it states:
(The context is IIS 6 and 7)
Thread pooling can be tricky. When
implementing asynchronous handlers and
webpages, use a performance testing
tool to verify performance under a
heavy load. Sometimes the overhead
introduced by asynchronous programming
can offset the benefits. Whether
performance improves depends on many
aspects of the application and web
server configuration. One sure way to
get performance gains is to create a
new thread. There is only one Common
Language Runtime (CLR) thread pool per
AppDomain, so you must be sure to not
just consume the same threads ASP.NET
would be using. Instead, create your
own.
How do I create a new thread without reusing the same threads in the current thread pool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论