KinoSearch::Searcher - Execute searches against a single invindex.
my $searcher = KinoSearch::Searcher->new(
invindex => MySchema->read('/path/to/invindex'),
);
my $hits = $searcher->search(
query => 'foo bar'
offset => 0,
num_wanted => 100,
);
Use the Searcher class to perform search queries against an invindex. (For searching multiple indexes at once, see MultiSearcher).
my $searcher = KinoSearch::Searcher->new(
invindex => MySchema->read('/path/to/invindex'),
);
# or...
my $searcher = KinoSearch::Searcher->new( reader => $reader );
Either invindex or reader is required.
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.
Iterate over hits, feeding them into a HitCollector.
Return the maximum number of docs in the collection represented by the Searchable, which is also the largest possible doc number. Deleted docs are included in this count.
Return the number of documents which contain the term in the given field.
Retrieve the stored fields for the given doc num, packaged as a HitDoc object. Throws an error if the doc num is out of range.
Accessor for the object's schema member.
Accessor for the object's reader member.
KinoSearch::Searcher isa KinoSearch::Search::Searchable isa KinoSearch::Obj.
Copyright 2005-2008 Marvin Humphrey
See KinoSearch version 0.20.