ParallelEnumerable.AsUnordered<TSource> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
允许将中间查询视为元素之间未应用任何排序。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ AsUnordered(System::Linq::ParallelQuery<TSource> ^ source);
public static System.Linq.ParallelQuery<TSource> AsUnordered<TSource> (this System.Linq.ParallelQuery<TSource> source);
static member AsUnordered : System.Linq.ParallelQuery<'Source> -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function AsUnordered(Of TSource) (source As ParallelQuery(Of TSource)) As ParallelQuery(Of TSource)
类型参数
- TSource
source
的元素类型。
参数
- source
- ParallelQuery<TSource>
输入序列。
返回
具有任意顺序的源序列。
例外
source
为 null 引用(在 Visual Basic 中为 Nothing)。
注解
当查询的某一部分不需要排序时,AsUnordered 可能会提供性能优势。 默认情况下,除非指定了 OrderBy 或 AsOrdered,否则 PLINQ 将输入序列视为无序。 但是,如果已打开排序并且不再需要排序,则可以使用 AsUnordered 在查询中将其关闭,这可能会导致性能提升。 AsUnordered 运算符本身不会随机排列源序列;它只是删除了后续运算符的排序要求。 如果源已排序,后续运算符可能会保持该顺序(如果这样做更高效)。 可以在查询中的任何位置调用 AsUnordered;不需要在 AsParallel 之后立即调用它。 有关详细信息,请参阅 了解 PLINQ 中的加速 和 PLINQ 中的顺序保留。