Lucene++ - a full-featured, c++ search engine
API Documentation
An abstract base class for search implementations. Implements the main search methods. More...
#include <Searcher.h>
Public Member Functions | |
Searcher () | |
virtual | ~Searcher () |
virtual String | getClassName () |
boost::shared_ptr< Searcher > | shared_from_this () |
virtual TopFieldDocsPtr | search (QueryPtr query, FilterPtr filter, int32_t n, SortPtr sort) |
Search implementation with arbitrary sorting. Finds the top n hits for query, applying filter if non-null, and sorting the hits by the criteria in sort. More... | |
virtual void | search (QueryPtr query, CollectorPtr results) |
Lower-level search API. More... | |
virtual void | search (QueryPtr query, FilterPtr filter, CollectorPtr results) |
Lower-level search API. More... | |
virtual TopDocsPtr | search (QueryPtr query, FilterPtr filter, int32_t n) |
Finds the top n hits for query, applying filter if non-null. More... | |
virtual TopDocsPtr | search (QueryPtr query, int32_t n) |
Finds the top n hits for query. More... | |
virtual ExplanationPtr | explain (QueryPtr query, int32_t doc) |
Returns an Explanation that describes how doc scored against query. More... | |
virtual void | setSimilarity (SimilarityPtr similarity) |
Set the Similarity implementation used by this Searcher. More... | |
virtual SimilarityPtr | getSimilarity () |
Return the Similarity implementation used by this Searcher. More... | |
virtual Collection< int32_t > | docFreqs (Collection< TermPtr > terms) |
For each term in the terms array, calculates the number of documents containing term. Returns an array with these document frequencies. Used to minimize number of remote calls. More... | |
virtual void | search (WeightPtr weight, FilterPtr filter, CollectorPtr results)=0 |
Lower-level search API. More... | |
virtual void | close ()=0 |
Frees resources associated with this Searcher. Be careful not to call this method while you are still using objects that reference this Searchable. More... | |
virtual int32_t | docFreq (TermPtr term)=0 |
Returns the number of documents containing term. More... | |
virtual int32_t | maxDoc ()=0 |
Returns one greater than the largest possible document number. More... | |
virtual TopDocsPtr | search (WeightPtr weight, FilterPtr filter, int32_t n)=0 |
Low-level search implementation. Finds the top n hits for query, applying filter if non-null. Applications should usually call Searcher#search(QueryPtr, int32_t) or Searcher#search(QueryPtr, FilterPtr, int32_t) instead. More... | |
virtual DocumentPtr | doc (int32_t n)=0 |
Returns the stored fields of document i. More... | |
virtual DocumentPtr | doc (int32_t n, FieldSelectorPtr fieldSelector)=0 |
Get the Document at the n'th position. The FieldSelector may be used to determine what Fields to load and how they should be loaded. More... | |
virtual QueryPtr | rewrite (QueryPtr query)=0 |
Called to re-write queries into primitive queries. More... | |
virtual ExplanationPtr | explain (WeightPtr weight, int32_t doc)=0 |
Low-level implementation method. Returns an Explanation that describes how doc scored against weight. More... | |
virtual TopFieldDocsPtr | search (WeightPtr weight, FilterPtr filter, int32_t n, SortPtr sort)=0 |
Low-level search implementation with arbitrary sorting. Finds the top n hits for query, applying filter if non-null, and sorting the hits by the criteria in sort. More... | |
![]() | |
virtual | ~LuceneObject () |
virtual void | initialize () |
Called directly after instantiation to create objects that depend on this object being fully constructed. More... | |
virtual LuceneObjectPtr | clone (LuceneObjectPtr other=LuceneObjectPtr()) |
Return clone of this object. More... | |
virtual int32_t | hashCode () |
Return hash code for this object. More... | |
virtual bool | equals (LuceneObjectPtr other) |
Return whether two objects are equal. More... | |
virtual int32_t | compareTo (LuceneObjectPtr other) |
Compare two objects. More... | |
virtual String | toString () |
Returns a string representation of the object. More... | |
![]() | |
virtual | ~LuceneSync () |
virtual SynchronizePtr | getSync () |
Return this object synchronize lock. More... | |
virtual LuceneSignalPtr | getSignal () |
Return this object signal. More... | |
virtual void | lock (int32_t timeout=0) |
Lock this object using an optional timeout. More... | |
virtual void | unlock () |
Unlock this object. More... | |
virtual bool | holdsLock () |
Returns true if this object is currently locked by current thread. More... | |
virtual void | wait (int32_t timeout=0) |
Wait for signal using an optional timeout. More... | |
virtual void | notifyAll () |
Notify all threads waiting for signal. More... | |
Static Public Member Functions | |
static String | _getClassName () |
![]() | |
static String | _getClassName () |
Protected Member Functions | |
virtual WeightPtr | createWeight (QueryPtr query) |
Creates a weight for query. More... | |
![]() | |
LuceneObject () | |
Protected Attributes | |
SimilarityPtr | similarity |
The Similarity implementation used by this searcher. More... | |
An abstract base class for search implementations. Implements the main search methods.
Note that you can only access hits from a Searcher as long as it is not yet closed, otherwise an IO exception will be thrown.
Lucene::Searcher::Searcher | ( | ) |
|
virtual |
|
inlinestatic |
|
pure virtual |
Frees resources associated with this Searcher. Be careful not to call this method while you are still using objects that reference this Searchable.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
|
pure virtual |
Returns the stored fields of document i.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
|
pure virtual |
Get the Document at the n'th position. The FieldSelector may be used to determine what Fields to load and how they should be loaded.
NOTE: If the underlying Reader (more specifically, the underlying FieldsReader) is closed before the lazy Field is loaded an exception may be thrown. If you want the value of a lazy Field to be available after closing you must explicitly load it or fetch the Document again with a new loader.
n | Get the document at the n'th position |
fieldSelector | The FieldSelector to use to determine what Fields should be loaded on the Document. May be null, in which case all Fields will be loaded. |
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
|
pure virtual |
Returns the number of documents containing term.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, Lucene::MultiSearcher, and Lucene::ParallelMultiSearcher.
|
virtual |
For each term in the terms array, calculates the number of documents containing term. Returns an array with these document frequencies. Used to minimize number of remote calls.
Implements Lucene::Searchable.
|
virtual |
Returns an Explanation that describes how doc scored against query.
This is intended to be used in developing Similarity implementations, and for good performance, should not be displayed with every hit. Computing an explanation is as expensive as executing the query over the entire index.
|
pure virtual |
Low-level implementation method. Returns an Explanation that describes how doc scored against weight.
This is intended to be used in developing Similarity implementations, and for good performance, should not be displayed with every hit. Computing an explanation is as expensive as executing the query over the entire index.
Applications should call Searcher#explain(QueryPtr, int32_t).
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
|
inlinevirtual |
Reimplemented from Lucene::Searchable.
Reimplemented in Lucene::IndexSearcher, Lucene::MultiSearcher, and Lucene::ParallelMultiSearcher.
|
virtual |
Return the Similarity implementation used by this Searcher.
This defaults to the current value of Similarity#getDefault().
|
pure virtual |
Returns one greater than the largest possible document number.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
Called to re-write queries into primitive queries.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
|
virtual |
Search implementation with arbitrary sorting. Finds the top n hits for query, applying filter if non-null, and sorting the hits by the criteria in sort.
NOTE: this does not compute scores by default; use IndexSearcher#setDefaultFieldSortScoring to enable scoring.
|
virtual |
Lower-level search API.
Collector#collect(int32_t) is called for every matching document.
Applications should only use this if they need all of the matching documents. The high-level search API (Searcher#search(QueryPtr, int32_t)) is usually more efficient, as it skips non-high-scoring hits.
Note: The score passed to this method is a raw score. In other words, the score will not necessarily be a double whose value is between 0 and 1.
|
virtual |
Lower-level search API.
Collector#collect(int32_t) is called for every matching document. Collector-based access to remote indexes is discouraged.
Applications should only use this if they need all of the matching documents. The high-level search API (Searcher#search(QueryPtr, FilterPtr, int32_t)) is usually more efficient, as it skips non-high-scoring hits.
query | To match documents |
filter | If non-null, used to permit documents to be collected. |
results | To receive hits |
|
virtual |
Finds the top n hits for query, applying filter if non-null.
|
virtual |
Finds the top n hits for query.
|
pure virtual |
Lower-level search API.
Collector#collect(int32_t) is called for every document. Collector-based access to remote indexes is discouraged.
Applications should only use this if they need all of the matching documents. The high-level search API (Searcher#search(QueryPtr, int32_t)) is usually more efficient, as it skips non-high-scoring hits.
weight | To match documents |
filter | If non-null, used to permit documents to be collected. |
collector | To receive hits |
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, and Lucene::MultiSearcher.
|
pure virtual |
Low-level search implementation. Finds the top n hits for query, applying filter if non-null. Applications should usually call Searcher#search(QueryPtr, int32_t) or Searcher#search(QueryPtr, FilterPtr, int32_t) instead.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, Lucene::MultiSearcher, and Lucene::ParallelMultiSearcher.
|
pure virtual |
Low-level search implementation with arbitrary sorting. Finds the top n hits for query, applying filter if non-null, and sorting the hits by the criteria in sort.
Applications should usually call Searcher#search(QueryPtr, FilterPtr, int32_t, SortPtr) instead.
Implements Lucene::Searchable.
Implemented in Lucene::IndexSearcher, Lucene::MultiSearcher, and Lucene::ParallelMultiSearcher.
|
virtual |
Set the Similarity implementation used by this Searcher.
|
inline |
|
protected |
The Similarity implementation used by this searcher.