KinoSearch::Search::Hits - Access search results.
my $hits = $searcher->search(
query => $query,
offset => 0,
num_wanted => 10,
);
while ( my $hit = $hits->next ) {
print "<p>$hit->{title} <em>" . $hit->get_score . "</em></p>\n";
}
Hits objects are iterators used to access the results of a search.
Return the next hit as a HitDoc object, or undef when the iterator is exhausted.
Return the total number of documents which matched the Query used to produce the Hits object. Note that this is the total number of matches, not just the number of matches represented by the Hits iterator.
KinoSearch::Search::Hits isa KinoSearch::Obj.
Copyright 2005-2008 Marvin Humphrey
See KinoSearch version 0.20.