Lucy::Search::Searcher - Base class for searching collections of documents.
# Abstract base class.
Abstract base class for objects which search. Core subclasses include IndexSearcher and PolySearcher.
package MySearcher; use base qw( Lucy::Search::Searcher ); sub new { my $self = shift->SUPER::new; ... return $self; }
Abstract constructor.
my $int = $searcher->doc_max();
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.
my $int = $searcher->doc_freq( field => $field # required term => $term # required );
Return the number of documents which contain the term in the given field.
$searcher->collect( query => $query # required collector => $collector # required );
Iterate over hits, feeding them into a Collector.
my $hit_doc = $searcher->fetch_doc($doc_id);
Retrieve a document. Throws an error if the doc id is out of range.
my $query = $searcher->glean_query($query); my $query = $searcher->glean_query(); # default: undef
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.
my $hits = $searcher->hits( query => $query # required offset => $offset # default: 0 num_wanted => $num_wanted # default: 10 sort_spec => $sort_spec # default: undef );
Return a Hits object containing the top results.
offset
to 20 and num_wanted
to 10 retrieves hits 21-30,
assuming that 30 hits can be found.offset
is taken into account.my $schema = $searcher->get_schema();
Accessor for the object’s schema
member.
Lucy::Search::Searcher isa Clownfish::Obj.
Copyright © 2010-2015 The Apache Software Foundation, Licensed under the
Apache License, Version 2.0.
Apache Lucy, Lucy, Apache, the Apache feather logo, and the Apache Lucy project logo are trademarks of The
Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their
respective owners.