Lucy::Search::TermQuery - Query which matches individual terms.
my $term_query = Lucy::Search::TermQuery->new(
field => 'content',
term => 'foo',
);
my $hits = $searcher->hits( query => $term_query );
TermQuery is a subclass of Query for matching individual terms in a specific field.
my $term_query = Lucy::Search::TermQuery->new(
field => 'content', # required
term => 'foo', # required
);
Create a new TermQuery.
my $string = $term_query->get_field();
Accessor for object’s field member.
my $obj = $term_query->get_term();
Accessor for object’s term member.
my $compiler = $term_query->make_compiler(
searcher => $searcher # required
boost => $boost # required
subordinate => $subordinate # default: false
);
Abstract factory method returning a Compiler derived from this Query.
Lucy::Search::TermQuery isa Lucy::Search::Query isa Clownfish::Obj.
Copyright © 2010-2015 The Apache Software Foundation, Licensed under the
Apache License, Version 2.0.
Apache Lucy, Lucy, Apache, the Apache feather logo, and the Apache Lucy project logo are trademarks of The
Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their
respective owners.