Package | Description |
---|---|
org.apache.lucene.benchmark.quality.utils |
Miscellaneous utilities for search quality benchmarking: query parsing, submission reports.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Method and Description |
---|---|
void |
SubmissionReport.report(QualityQuery qq,
TopDocs td,
java.lang.String docNameField,
Searcher searcher)
Report a search result for a certain quality query.
|
Modifier and Type | Class and Description |
---|---|
class |
TopFieldDocs
Represents hits returned by
Searcher.search(Query,Filter,int,Sort) . |
Modifier and Type | Field and Description |
---|---|
protected static TopDocs |
TopDocsCollector.EMPTY_TOPDOCS |
Modifier and Type | Method and Description |
---|---|
protected TopDocs |
TopDocsCollector.newTopDocs(ScoreDoc[] results,
int start)
Returns a
TopDocs instance containing the given results. |
protected TopDocs |
TopScoreDocCollector.newTopDocs(ScoreDoc[] results,
int start) |
protected TopDocs |
TopFieldCollector.newTopDocs(ScoreDoc[] results,
int start) |
TopDocs |
Searcher.search(Query query,
Filter filter,
int n)
Finds the top
n
hits for query , applying filter if non-null. |
TopDocs |
Searcher.search(Query query,
int n)
Finds the top
n
hits for query . |
TopDocs |
RemoteSearchable.search(Weight weight,
Filter filter,
int n) |
TopDocs |
Searchable.search(Weight weight,
Filter filter,
int n)
Expert: Low-level search implementation.
|
TopDocs |
MultiSearcher.search(Weight weight,
Filter filter,
int nDocs) |
TopDocs |
ParallelMultiSearcher.search(Weight weight,
Filter filter,
int nDocs)
A search implementation which spans a new thread for each
Searchable, waits for each search to complete and merge
the results back together.
|
TopDocs |
IndexSearcher.search(Weight weight,
Filter filter,
int nDocs) |
abstract TopDocs |
Searcher.search(Weight weight,
Filter filter,
int n) |
TopDocs |
TopDocsCollector.topDocs()
Returns the top docs that were collected by this collector.
|
TopDocs |
TopFieldDocCollector.topDocs()
Deprecated.
|
TopDocs |
TopDocCollector.topDocs()
Deprecated.
The top-scoring hits.
|
TopDocs |
TopDocsCollector.topDocs(int start)
Returns the documents in the rage [start ..
|
TopDocs |
TopDocsCollector.topDocs(int start,
int howMany)
Returns the documents in the rage [start ..
|
Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.