KinoSearch::Search::PhraseQuery - Query matching an ordered list of terms.
my $phrase_query = KinoSearch::Search::PhraseQuery->new(
field => 'content',
terms => [qw( the who )],
);
my $hits = $searcher->hits( query => $phrase_query );
PhraseQuery is a subclass of KinoSearch::Search::Query for matching against an ordered sequence of terms.
Accessor for object's field attribute.
Accessor for object's array of terms.
KinoSearch::Search::PhraseQuery isa KinoSearch::Search::Query isa KinoSearch::Object::Obj.
Copyright 2005-2010 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.