ThreadPool中的线程数
我有一个在.net 中使用线程池的Windows 服务。当我将线程池中的最大线程数配置为 1 时,我仍然可以通过使用该服务的任务管理器看到多个线程。这些线程数有什么区别?
I have a windows service which uses thread-pool in .net. When I configure maximum threads to be 1 in the thread pool I can still see more than one threads by using task manager for that service. What is the difference between these thread count?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应用程序使用的线程数不受线程池的控制。还有许多其他东西会在您的应用程序中创建线程。除了应用程序直接使用的线程之外,线程池还维护一组线程。
另外,将线程池线程数限制为 1 也不是一个好主意。你可能会导致各种各样的问题,而且它不会做你认为它正在做的事情。
The number of threads in use by your application is not under the control of the thread pool. There are numerous other things that will create threads in your application. The thread pool maintains a group of threads in addition to the ones used by your application directly.
Also, limiting thread pool threads to 1 is not a good idea. You may cause all sorts of problems plus it doesn't do what you think it is doing.