| KinoSearch documentation | view source | Contained in the KinoSearch distribution. |
KinoSearch::Search::TermQuery - Query which matches individual terms.
my $term_query = KinoSearch::Search::TermQuery->new(
field => 'content',
term => 'foo',
);
my $hits = $searcher->hits( query => $term_query );
TermQuery is a subclass of KinoSearch::Search::Query for matching individual terms in a specific field.
my $term_query = KinoSearch::Search::TermQuery->new(
field => 'content', # required
term => 'foo', # required
);
Accessor for object's field member.
Accessor for object's term member.
KinoSearch::Search::TermQuery 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.
| KinoSearch documentation | view source | Contained in the KinoSearch distribution. |