LucyX::Search::ProximityQuery
Query matching an ordered list of terms.
- Provided by: liblucy-perl (Version: 0.3.3-6build1)
- Report a bug
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 Lucy::Search::Query for matching against an ordered sequence of terms.
Accessor for object's field attribute.
Accessor for object's array of terms.
Accessor for object's within attribute.
LucyX::Search::ProximityQuery isa Lucy::Search::Query isa Lucy::Object::Obj.