C# Класс Lucene.Net.Join.ToParentBlockJoinCollector

Collects parent document hits for a Query containing one more more BlockJoinQuery clauses, sorted by the specified parent Sort. Note that this cannot perform arbitrary joins; rather, it requires that all joined documents are indexed as a doc block (using {@link IndexWriter#addDocuments} or {@link IndexWriter#updateDocuments}). Ie, the join is computed at index time.

The parent Sort must only use fields from the parent documents; sorting by field in the child documents is not supported.

You should only use this collector if one or more of the clauses in the query is a ToParentBlockJoinQuery. This collector will find those query clauses and record the matching child documents for the top scoring parent documents.

Multiple joins (star join) and nested joins and a mix of the two are allowed, as long as in all cases the documents corresponding to a single row of each joined parent table were indexed as a doc block.

For the simple star join you can retrieve the TopGroups instance containing each ToParentBlockJoinQuery's matching child documents for the top parent groups, using #getTopGroups. Ie, a single query, which will contain two or more ToParentBlockJoinQuery's as clauses representing the star join, can then retrieve two or more TopGroups instances.

For nested joins, the query will run correctly (ie, match the right parent and child documents), however, because TopGroups is currently unable to support nesting (each group is not able to hold another TopGroups), you are only able to retrieve the TopGroups of the first join. The TopGroups of the nested joins will not be correct. See org.apache.lucene.search.join for a code sample. @lucene.experimental

Наследование: Lucene.Net.Search.Collector
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AcceptsDocsOutOfOrder ( ) : bool
Collect ( int parentDoc ) : void
GetTopGroups ( Lucene.Net.Join.ToParentBlockJoinQuery query, Lucene.Net.Search.Sort withinGroupSort, int offset, int maxDocsPerGroup, int withinGroupOffset, bool fillSortFields ) : TopGroups

Returns the TopGroups for the specified BlockJoinQuery. The groupValue of each GroupDocs will be the parent docID for that group. The number of documents within each group is calculated as minimum of maxDocsPerGroup and number of matched child documents for that group. Returns null if no groups matched.

GetTopGroupsWithAllChildDocs ( Lucene.Net.Join.ToParentBlockJoinQuery query, Lucene.Net.Search.Sort withinGroupSort, int offset, int withinGroupOffset, bool fillSortFields ) : TopGroups

Returns the TopGroups for the specified BlockJoinQuery. The groupValue of each GroupDocs will be the parent docID for that group. The number of documents within each group equals to the total number of matched child documents for that group. Returns null if no groups matched.

ToParentBlockJoinCollector ( Lucene.Net.Search.Sort sort, int numParentHits, bool trackScores, bool trackMaxScore ) : System

Creates a ToParentBlockJoinCollector. The provided sort must not be null. If you pass true trackScores, all ToParentBlockQuery instances must not use ScoreMode.None.

Приватные методы

Метод Описание
AccumulateGroups ( int slot, int offset, int maxDocsPerGroup, int withinGroupOffset, Lucene.Net.Search.Sort withinGroupSort, bool fillSortFields ) : TopGroups

Accumulates groups for the BlockJoinQuery specified by its slot.

CopyGroups ( OneGroup og ) : void
Enroll ( Lucene.Net.Join.ToParentBlockJoinQuery query, Lucene.Net.Join.ToParentBlockJoinQuery scorer ) : void
sortQueue ( ) : void

Описание методов

AcceptsDocsOutOfOrder() публичный Метод

public AcceptsDocsOutOfOrder ( ) : bool
Результат bool

Collect() публичный Метод

public Collect ( int parentDoc ) : void
parentDoc int
Результат void

GetTopGroups() публичный Метод

Returns the TopGroups for the specified BlockJoinQuery. The groupValue of each GroupDocs will be the parent docID for that group. The number of documents within each group is calculated as minimum of maxDocsPerGroup and number of matched child documents for that group. Returns null if no groups matched.
if there is a low-level I/O error
public GetTopGroups ( Lucene.Net.Join.ToParentBlockJoinQuery query, Lucene.Net.Search.Sort withinGroupSort, int offset, int maxDocsPerGroup, int withinGroupOffset, bool fillSortFields ) : TopGroups
query Lucene.Net.Join.ToParentBlockJoinQuery Search query
withinGroupSort Lucene.Net.Search.Sort Sort criteria within groups
offset int Parent docs offset
maxDocsPerGroup int Upper bound of documents per group number
withinGroupOffset int Offset within each group of child docs
fillSortFields bool Specifies whether to add sort fields or not
Результат TopGroups

GetTopGroupsWithAllChildDocs() публичный Метод

Returns the TopGroups for the specified BlockJoinQuery. The groupValue of each GroupDocs will be the parent docID for that group. The number of documents within each group equals to the total number of matched child documents for that group. Returns null if no groups matched.
if there is a low-level I/O error
public GetTopGroupsWithAllChildDocs ( Lucene.Net.Join.ToParentBlockJoinQuery query, Lucene.Net.Search.Sort withinGroupSort, int offset, int withinGroupOffset, bool fillSortFields ) : TopGroups
query Lucene.Net.Join.ToParentBlockJoinQuery Search query
withinGroupSort Lucene.Net.Search.Sort Sort criteria within groups
offset int Parent docs offset
withinGroupOffset int Offset within each group of child docs
fillSortFields bool Specifies whether to add sort fields or not
Результат TopGroups

ToParentBlockJoinCollector() публичный Метод

Creates a ToParentBlockJoinCollector. The provided sort must not be null. If you pass true trackScores, all ToParentBlockQuery instances must not use ScoreMode.None.
public ToParentBlockJoinCollector ( Lucene.Net.Search.Sort sort, int numParentHits, bool trackScores, bool trackMaxScore ) : System
sort Lucene.Net.Search.Sort
numParentHits int
trackScores bool
trackMaxScore bool
Результат System