Class TopDocs
Represents hits returned by Search(Query, Filter, Int32) and Search(Query, Int32).
Inherited Members
Namespace: Lucene.Net.Search
Assembly: Lucene.Net.dll
Syntax
public class TopDocs
Constructors
| Improve this Doc View SourceTopDocs(Int32, ScoreDoc[], Single)
Declaration
public TopDocs(int totalHits, ScoreDoc[] scoreDocs, float maxScore)
Parameters
Type | Name | Description |
---|---|---|
System. |
totalHits | |
Score |
scoreDocs | |
System. |
maxScore |
Properties
| Improve this Doc View SourceMaxScore
Returns the maximum score value encountered. Note that in case
scores are not tracked, this returns System.
Declaration
public virtual float MaxScore { get; set; }
Property Value
Type | Description |
---|---|
System. |
ScoreDocs
The top hits for the query.
Declaration
public ScoreDoc[] ScoreDocs { get; set; }
Property Value
Type | Description |
---|---|
Score |
TotalHits
The total number of hits for the query.
Declaration
public int TotalHits { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceMerge(Sort, Int32, TopDocs[])
Returns a new ToptopN
results across
the provided TopfillFields=true
must be
passed to
Create(Sort, Int32, Boolean, Boolean, Boolean, Boolean).
Pass sort
=null to merge sort by score descending.
Declaration
public static TopDocs Merge(Sort sort, int topN, TopDocs[] shardHits)
Parameters
Returns
Type | Description |
---|---|
Top |
Merge(Sort, Int32, Int32, TopDocs[])
Same as Merge(Sort, Int32, TopTopDocs
will always have a scoreDocs with length of
at most Count.
Declaration
public static TopDocs Merge(Sort sort, int start, int size, TopDocs[] shardHits)
Parameters
Returns
Type | Description |
---|---|
Top |