NAME
KinoSearch::Search::TermQuery - Query which matches individual terms.
DEPRECATED
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/
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.
METHODS
get_field()
Accessor for object's field
member.
get_term()
Accessor for object's term
member.
INHERITANCE
KinoSearch::Search::TermQuery isa KinoSearch::Search::Query isa KinoSearch::Object::Obj.
COPYRIGHT AND LICENSE
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.