HOW TO:建立並執行簡單的 PLINQ 查詢
更新:2010 年 5 月
下列範例說明如何在來源序列上使用 AsParallel 擴充方法建立簡易平行 LINQ 查詢,以及如何使用 ForAll<TSource> 方法執行查詢。
注意事項 |
---|
本文件使用 Lambda 運算式來定義 PLINQ 中的委派。如果您不太熟悉 C# 或 Visual Basic 中的 Lambda 運算式,請參閱 PLINQ 和 TPL 中的 Lambda 運算式。 |
範例
Sub SimpleQuery()
Dim source = Enumerable.Range(100, 20000)
' Result sequence might be out of order.
Dim parallelQuery = From num In source.AsParallel()
Where num Mod 10 = 0
Select num
' Process result sequence in parallel
parallelQuery.ForAll(Sub(e)
DoSomething(e)
End Sub)
' Or use For Each to merge results first
' as in this example, Where results must
' be serialized sequentially through static Console method.
For Each n In parallelQuery
Console.Write("{0} ", n)
Next
' You can also use ToArray, ToList, etc
' as with LINQ to Objects.
Dim parallelQuery2 = (From num In source.AsParallel()
Where num Mod 10 = 0
Select num).ToArray()
'Method syntax is also supported
Dim parallelQuery3 = source.AsParallel().Where(Function(n)
Return (n Mod 10) = 0
End Function).Select(Function(n)
Return n
End Function)
For Each i As Integer In parallelQuery3
Console.Write("{0} ", i)
Next
Console.ReadLine()
End Sub
' A toy function to demonstrate syntax. Typically you need a more
' computationally expensive method to see speedup over sequential queries.
Sub DoSomething(ByVal i As Integer)
Console.Write("{0:###.## }", Math.Sqrt(i))
End Sub
var source = Enumerable.Range(100, 20000);
// Result sequence might be out of order.
var parallelQuery = from num in source.AsParallel()
where num % 10 == 0
select num;
// Process result sequence in parallel
parallelQuery.ForAll((e) => DoSomething(e));
// Or use foreach to merge results first.
foreach (var n in parallelQuery)
{
Console.WriteLine(n);
}
// You can also use ToArray, ToList, etc
// as with LINQ to Objects.
var parallelQuery2 = (from num in source.AsParallel()
where num % 10 == 0
select num).ToArray();
// Method syntax is also supported
var parallelQuery3 = source.AsParallel().Where(n => n % 10 == 0).Select(n => n);
此範例會示範在結果序列的順序不重要時,用以建立及執行任何平行 LINQ 查詢的基本模式;未排序的查詢通常比排序的查詢快。 查詢會將來源分割成在多個執行緒上非同步執行的工作。 每項工作的完成順序不僅取決於處理分割中的項目時所涉及的工作量,也取決於一些外部因素,例如作業系統排程每個執行緒的方式。 這個範例是為了示範用法,執行速度可能比不上對應的循序 LINQ to Objects 查詢。 如需加速的詳細資訊,請參閱認識 PLINQ 中的加速。 如需如何在查詢中保留項目順序的詳細資訊,請參閱 HOW TO:控制 PLINQ 查詢中的順序。
編譯程式碼
建立主控台應用程式專案。
將程式碼範例貼到 Main 方法之後。
在 Main 中加入 SimpleQuery 呼叫,然後按 F5。
請參閱
概念
變更記錄
日期 |
記錄 |
原因 |
---|---|---|
2010 年 5 月 |
加入有關使用方式和 加速的比較注意事項。 |
客戶回函。 |