KinoSearch::Search::ANDQuery - Intersect multiple result sets.


KinoSearch documentation  | view source Contained in the KinoSearch distribution.

Index


NAME

Top

KinoSearch::Search::ANDQuery - Intersect multiple result sets.

SYNOPSIS

Top

    my $foo_and_bar_query = KinoSearch::Search::ANDQuery->new(
        children => [ $foo_query, $bar_query ],
    );
    my $hits = $searcher->hits( query => $foo_and_bar_query );
    ...







DESCRIPTION

Top

ANDQuery is a composite Query which matches only when all of its children match, so its result set is the intersection of their result sets. Documents which match receive a summed score.

CONSTRUCTORS

Top

new( [labeled params] )

    my $foo_and_bar_query = KinoSearch::Search::ANDQuery->new(
        children => [ $foo_query, $bar_query ],
    );

METHODS

Top

add_child(query)

Add a child Query node.

INHERITANCE

Top

KinoSearch::Search::ANDQuery isa KinoSearch::Search::PolyQuery isa KinoSearch::Search::Query isa KinoSearch::Object::Obj.

COPYRIGHT AND LICENSE

Top


KinoSearch documentation  | view source Contained in the KinoSearch distribution.