logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

KinoSearch1::Search::PhraseQuery - match ordered list of Terms

Description

       PhraseQuery is a subclass of KinoSearch1::Search::Query for matching against ordered collections of
       terms.

License, Disclaimer, Bugs, Etc.

       See KinoSearch1 version 1.01.

perl v5.40.0                                       2024-10-20              KinoSearch1::Search::PhraseQuery(3pm)

Methods

new
           my $phrase_query = KinoSearch1::Search::PhraseQuery->new;

       Constructor.  Takes no arguments.

   add_term
           $phrase_query->add_term($term);

       Append a term to the phrase to be matched.  Takes one argument, a KinoSearch1::Index::Term object.

Name

       KinoSearch1::Search::PhraseQuery - match ordered list of Terms

Synopsis

           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 );

See Also