KinoSearch::Search::IndexSearcher - Execute searches against a single index.
my $searcher = KinoSearch::Search::IndexSearcher->new(
index => '/path/to/index'
);
my $hits = $searcher->hits(
query => 'foo bar',
offset => 0,
num_wanted => 100,
);
Use the IndexSearcher class to perform search queries against an index. (For searching multiple indexes at once, see PolySearcher).
IndexSearchers operate against a single point-in-time view or Snapshot of the index. If an index is modified, a new IndexSearcher must be opened to access the changes.
my $searcher = KinoSearch::Search::IndexSearcher->new(
index => '/path/to/index'
);
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 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.
Accessor for the object's schema member.
Accessor for the object's reader member.
KinoSearch::Search::IndexSearcher isa KinoSearch::Search::Searcher isa KinoSearch::Object::Obj.
Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.