KinoSearch::Search::RequiredOptionalQuery - Join results for two Queries, one required, one optional.
my $foo_and_maybe_bar = KinoSearch::Search::RequiredOptionalQuery->new(
required_query => $foo_query,
optional_query => $bar_query,
);
my $hits = $searcher->hits( query => $foo_and_maybe_bar );
...
RequiredOptionalQuery joins the result sets of one Query which MUST match, and one Query which SHOULD match. When only the required Query matches, its score is passed along; when both match, the scores are summed.
my $reqopt_query = KinoSearch::Search::RequiredOptionalQuery->new(
required_query => $foo_query, # required
optional_query => $bar_query, # required
);
Getter for the required Query.
Setter for the required Query.
Getter for the optional Query.
Setter for the optional Query.
KinoSearch::Search::RequiredOptionalQuery isa KinoSearch::Search::PolyQuery isa KinoSearch::Search::Query isa KinoSearch::Object::Obj.
Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.