LucyX::Search::ProximityQuery - Query matching an ordered list of terms.
my $proximity_query = LucyX::Search::ProximityQuery->new( field => 'content', terms => [qw( the who )], within => 10, # match within 10 positions ); my $hits = $searcher->hits( query => $proximity_query );
ProximityQuery is a subclass of Query for matching against an ordered sequence of terms.
my $proximity_query = LucyX::Search::ProximityQuery->new( field => $field # required terms => $terms # required within => $within # required );
Create a new ProximityQuery.
my $string = $proximity_query->get_field();
Accessor for object’s field attribute.
my $arrayref = $proximity_query->get_terms();
Accessor for object’s array of terms.
my $int = $proximity_query->get_within();
Accessor for object’s within attribute.
my $compiler = $proximity_query->make_compiler( searcher => $searcher # required boost => $boost # required subordinate => $subordinate # default: false );
Abstract factory method returning a Compiler derived from this Query.
LucyX::Search::ProximityQuery 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.