
KinoSearch::Search::TermQuery - Query which matches individual terms.

The KinoSearch code base has been assimilated by the Apache Lucy project. The "KinoSearch" namespace has been deprecated, but development continues under our new name at our new home: http://lucy.apache.org/

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.