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::QueryFilter - build a filter based on results of a query

Description

       A QueryFilter spawns a result set that can be used to filter the results of another query.  The effect is
       very similar to adding a required clause to a BooleanQuery -- however, a QueryFilter caches its results,
       so it is more efficient if you use it more than once.

License, Disclaimer, Bugs, Etc.

       See KinoSearch1 version 1.01.

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

Methods

new
           my $filter = KinoSearch1::Search::QueryFilter->new(
               query => $query;
           );

       Constructor.  Takes one hash-style parameter, "query", which must be an object belonging to a subclass of
       KinoSearch1::Search::Query.

Name

       KinoSearch1::Search::QueryFilter - build a filter based on results of a query

Synopsis

           my $books_only_query  = KinoSearch1::Search::TermQuery->new(
               term => KinoSearch1::Index::Term->new( 'category', 'books' );
           );
           my $filter = KinoSearch1::Search::QueryFilter->new(
               query => $books_only_query;
           );
           my $hits = $searcher->search(
               query  => $query_string,
               filter => $filter,
           );

See Also