Lucy::Search::Searcher
Base class for searching collections of documents.
- Provided by: liblucy-perl (Version: 0.3.3-6build1)
- Report a bug
Base class for searching collections of documents.
# Abstract base class.
Abstract base class for objects which search. Core subclasses include Lucy::Search::IndexSearcher and Lucy::Search::PolySearcher.
package MySearcher;
use base qw( Lucy::Search::Searcher );
sub new {
my $self = shift->SUPER::new;
...
return $self;
}
Abstract constructor.
Iterate over hits, feeding them into a Collector.
Return the maximum number of docs in the collection represented by the Searcher, which is also the highest possible internal doc id. Documents which have been marked as deleted but not yet purged are included in this count.
Return the number of documents which contain the term in the given field.
Retrieve a document. Throws an error if the doc id is out of range.
Return a Hits object containing the top results.
If the supplied object is a Query, return it; if it's a query string, create a QueryParser and parse it to produce a query against all indexed fields.
Accessor for the object's "schema" member.
Lucy::Search::Searcher isa Lucy::Object::Obj.