我有以下代碼:什麼決定了TaskFactory派生作業的線程數量?
var factory = new TaskFactory();
for (int i = 0; i < 100; i++)
{
var i1 = i;
factory.StartNew(() => foo(i1));
}
static void foo(int i)
{
Thread.Sleep(1000);
Console.WriteLine($"foo{i} - on thread {Thread.CurrentThread.ManagedThreadId}");
}
我可以看到它只做4個線程在同一時間(根據觀察)。我的問題:
- 什麼決定一次使用的線程數?
- 我該如何檢索這個號碼?
- 如何更改此號碼?
P.S.我的盒子有4個核心。
P.P.S.我需要有任務的具體數量(沒有更多)是同時由TPL處理,並結束了與下面的代碼:
private static int count = 0; // keep track of how many concurrent tasks are running
private static void SemaphoreImplementation()
{
var s = new Semaphore(20, 20); // allow 20 tasks at a time
for (int i = 0; i < 1000; i++)
{
var i1 = i;
Task.Factory.StartNew(() =>
{
try
{
s.WaitOne();
Interlocked.Increment(ref count);
foo(i1);
}
finally
{
s.Release();
Interlocked.Decrement(ref count);
}
}, TaskCreationOptions.LongRunning);
}
}
static void foo(int i)
{
Thread.Sleep(100);
Console.WriteLine($"foo{i:00} - on thread " +
$"{Thread.CurrentThread.ManagedThreadId:00}. Executing concurently: {count}");
}
CPU核心數量。 – Enigmativity
@Enigmativity內核數量對於IO綁定工作負載沒有意義,並且TPL對IO無能爲力。 – usr
@Enigmativity因此,TPL的默認規則是讓最大線程數等於CPU數? – AngryHacker