作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 MacOS 上运行 dotnet 核心版本 2.1.3,我尝试使用默认线程池但没有成功。我尝试通过多种方式修改线程数(其中大部分我已经用谷歌搜索过了):
Program.cs
public static void Main(string[] args)
{
ThreadPool.SetMinThreads(1, 1);
ThreadPool.SetMaxThreads(1, 1);
DoSomethingAsync();
}
.csproj
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
<RetainVMGarbageCollection>true</RetainVMGarbageCollection>
<ThreadPoolMinThreads>1</ThreadPoolMinThreads>
<ThreadPoolMaxThreads>1</ThreadPoolMaxThreads>
</PropertyGroup>
环境变量
$ ComPlus_ThreadPool_ForceMinWorkerThreads=1 ComPlus_ThreadPool_ForceMaxWorkerThreads=1 dotnet run
这些似乎都没有任何效果:
$ ps -M 97046
USER PID TT %CPU STAT PRI STIME UTIME COMMAND
XXX 97046 s002 0.0 S 31T 0:00.02 0:00.07 dotnet exec /XXX
97046 0.0 S 31T 0:00.00 0:00.00
97046 0.0 S 31T 0:00.00 0:00.00
97046 0.0 S 31T 0:00.00 0:00.00
97046 0.0 S 31T 0:00.00 0:00.00
97046 0.0 S 31T 0:00.00 0:00.00
97046 0.0 S 31T 0:00.00 0:00.00
97046 0.0 S 31T 0:00.00 0:00.00
我在这里错过了什么?该操作系统是特定的吗?
最佳答案
The docs状态:
You cannot set the maximum number of worker threads or I/O completion threads to a number smaller than the number of processors on the computer.
鉴于您有 8 个处理器,因此您不能将其设置为只有一个。
此外,调用:
ThreadPool.SetMaxThreads(1, 1);
不会将您的进程限制为单个线程(即使它允许您将其设置为 1,但它不会,因为 1 小于 8)。它只是限制了线程池的大小。该程序可以(并且将)仍然使用多个线程。
例如,GC 可能会在单独的线程上运行。或者您可以创建自己的独立线程(不使用线程池)。限制线程池的最大大小不会对此产生影响。
关于c# - 控制 dotnet core 的 ThreadPool 中的线程数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49320226/
我是一名优秀的程序员,十分优秀!