Marvin Humphrey > KinoSearch-0.165 > KinoSearch::Search::PhraseQuery

Download:
KinoSearch-0.165.tar.gz

Annotate this POD

CPAN RT

Open  7
View Bugs
Report a bug
Source  

NAME ^

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

SYNOPSIS ^

    my $phrase_query = KinoSearch::Search::PhraseQuery->new;
    for ( qw( the who ) ) {
        my $term = KinoSearch::Index::Term( 'bodytext', $_ );
        $phrase_query->add_term($term);
    }
    my $hits = $searcher->search( query => $phrase_query );

DESCRIPTION ^

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

METHODS ^

new

    my $phrase_query = KinoSearch::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 KinoSearch::Index::Term object.

COPYRIGHT ^

Copyright 2005-2009 Marvin Humphrey

LICENSE, DISCLAIMER, BUGS, etc. ^

See KinoSearch version 0.165.