NAME
KinoSearch::Search::TermQuery - Query which matches individual terms.
SYNOPSIS
my $term_query = KinoSearch::Search::TermQuery->new(
field => 'content',
term => 'foo',
);
my $hits = $searcher->hits( query => $term_query );
DESCRIPTION
TermQuery is a subclass of KinoSearch::Search::Query for matching individual terms in a specific field.
CONSTRUCTORS
new( [labeled params] )
my $term_query = KinoSearch::Search::TermQuery->new(
field => 'content', # required
term => 'foo', # required
);
field - Field name.
term - Term text.
INHERITANCE
KinoSearch::Search::TermQuery isa KinoSearch::Search::Query isa KinoSearch::Object::Obj.
COPYRIGHT AND LICENSE
Copyright 2005-2010 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.