KinoSearch1::Search::PhraseQuery
match ordered list of Terms
- Provided by: libkinosearch1-perl (Version: 1.01-3build1)
- Report a bug
match ordered list of Terms
my $phrase_query = KinoSearch1::Search::PhraseQuery->new;
for ( qw( the who ) ) {
my $term = KinoSearch1::Index::Term( 'bodytext', $_ );
$phrase_query->add_term($term);
}
my $hits = $searcher->search( query => $phrase_query );
PhraseQuery is a subclass of KinoSearch1::Search::Query for matching against ordered collections of terms.
my $phrase_query = KinoSearch1::Search::PhraseQuery->new;
Constructor. Takes no arguments.
$phrase_query->add_term($term);
Append a term to the phrase to be matched. Takes one argument, a KinoSearch1::Index::Term object.
Copyright 2005-2010 Marvin Humphrey
See KinoSearch1 version 1.01.