* Return
CopyC#
true
if this collector does not * require the matching docIDs to be delivered in int sort * order (smallest to largest) to {@link #collect}. * *

Most Lucene Query implementations will visit * matching docIDs in order. However, some queries * (currently limited to certain cases of {@link * BooleanQuery}) can achieve faster searching if the *

CopyC#
Collector
allows them to deliver the * docIDs out of order. * *

Many collectors don't mind getting docIDs out of * order, so it's important to return

CopyC#
true
* here. *

Namespace: Lucene.Net.Search
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public abstract bool AcceptsDocsOutOfOrder()
Visual Basic
Public MustOverride Function AcceptsDocsOutOfOrder As Boolean
Visual C++
public:
virtual bool AcceptsDocsOutOfOrder() abstract

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Search.Collector.AcceptsDocsOutOfOrder"]

See Also