如何:在 PLINQ 中指定合併選項
這個範例示範如何指定合併選項,以套用至 PLINQ 查詢中的所有後續運算符。 您不需要明確設定合併選項,但這樣做可能會改善效能。 如需合併選項的詳細資訊,請參閱 PLINQ 中的合併選項。
警告
此範例旨在展示用法,執行速度可能不會比對應的循序 LINQ to Objects 查詢更快。 如需有關加速的更多資訊,請參閱 瞭解 PLINQ 中的加速。
範例
下列範例示範合併選項在具有未排序來源的基本案例中的行為,並將昂貴的函式套用至每個元素。
namespace MergeOptions
{
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading;
class Program
{
static void Main(string[] args)
{
var nums = Enumerable.Range(1, 10000);
// Replace NotBuffered with AutoBuffered
// or FullyBuffered to compare behavior.
var scanLines = from n in nums.AsParallel()
.WithMergeOptions(ParallelMergeOptions.NotBuffered)
where n % 2 == 0
select ExpensiveFunc(n);
Stopwatch sw = Stopwatch.StartNew();
foreach (var line in scanLines)
{
Console.WriteLine(line);
}
Console.WriteLine($"Elapsed time: {sw.ElapsedMilliseconds} ms. Press any key to exit.");
Console.ReadKey();
}
// A function that demonstrates what a fly
// sees when it watches television :-)
static string ExpensiveFunc(int i)
{
Thread.SpinWait(2000000);
return string.Format("{0} *****************************************", i);
}
}
}
Class MergeOptions2
Sub DoMergeOptions()
Dim nums = Enumerable.Range(1, 10000)
' Replace NotBuffered with AutoBuffered
' or FullyBuffered to compare behavior.
Dim scanLines = From n In nums.AsParallel().WithMergeOptions(ParallelMergeOptions.NotBuffered)
Where n Mod 2 = 0
Select ExpensiveFunc(n)
Dim sw = Stopwatch.StartNew()
For Each line In scanLines
Console.WriteLine(line)
Next
Console.WriteLine("Elapsed time: {0} ms. Press any key to exit.")
Console.ReadKey()
End Sub
' A function that demonstrates what a fly
' sees when it watches television :-)
Function ExpensiveFunc(ByVal i As Integer) As String
Threading.Thread.SpinWait(2000000)
Return String.Format("{0} *****************************************", i)
End Function
End Class
如果 AutoBuffered 選項在產生第一個元素之前會產生不想要的延遲,請嘗試 NotBuffered 選項,以更快且更順暢地產生結果元素。