|
NAMESearch::Xapian::ValueCountMatchSpy - Class for counting the frequencies of values in the matching documents. SYNOPSIS use Search::Xapian qw(:all);
my $db = Search::Xapian::Database->new( '[DATABASE DIR]' );
my $enq = $db->enquire( '[QUERY TERM]' );
my $spy = Search::Xapian::ValueCountMatchSpy->new(0);
$enq->add_matchspy($spy);
my $mset = $enq->get_mset(0, 10, 10000);
print "Match spy registered " . $spy->get_total() . " documents\n";
my $end = $spy->values_end();
for (my $it = $spy->values_begin(); $it != $end; $it++) {
print $it->get_termname() . " - " . $it->get_termfreq();
}
DESCRIPTIONClass for counting the frequencies of values in the matching documents. Wraps Xapian::ValueCountMatchSpy METHODS
SEE ALSOSearch::Xapian, Search::Xapian::MatchSpy
|