debian man page for kinosearch1::search::queryfilter

Query: kinosearch1::search::queryfilter

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

KinoSearch1::Search::QueryFilter(3pm)			User Contributed Perl Documentation		     KinoSearch1::Search::QueryFilter(3pm)

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, );
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.
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.
COPYRIGHT
Copyright 2005-2010 Marvin Humphrey LICENSE, DISCLAIMER, BUGS, etc. See KinoSearch1 version 1.00. perl v5.14.2 2011-11-15 KinoSearch1::Search::QueryFilter(3pm)
Related Man Pages
kinosearch1::highlight::highlighter(3pm) - debian
kinosearch1::invindexer(3pm) - debian
kinosearch1::search::hits(3pm) - debian
kinosearch1::search::multisearcher(3pm) - debian
kinosearch1::search::searchclient(3pm) - debian
Similar Topics in the Unix Linux Community
Adding the individual columns of a matrix.
Installing Dash Shell on OS X Lion
awk or sed - Convert 2 lines to 1 line
How can I do this in VI editor?
How to copy a column of multiple files and paste into new excel file (next to column)?