Skip to content

QueryParser should now allow leading '?' wildcards [LUCENE-2262] #3338

@asfimport

Description

@asfimport

QueryParser currently throws an exception if a wildcard term begins with the '?' operator.

The current documentation describes why this is:

When set, * or ? are allowed as the first character of a PrefixQuery and WildcardQuery.
Note that this can produce very slow queries on big indexes. 

In the flexible indexing branch, wildcard queries with leading '?' operator are no longer slow on big indexes (they do not enumerate terms in linear fashion).
Thus, it no longer makes sense to throw a ParseException for a leading '?'

So, users should be able to perform a query of "?foo" and no longer get a ParseException from the QueryParser.

For the flexible indexing branch, wildcard queries of 'foo?', '?foo', 'f?oo', etc are all the same from a performance perspective.


Migrated from LUCENE-2262 by Robert Muir (@rmuir), updated May 09 2016
Attachments: LUCENE-2262_backwards.patch, LUCENE-2262.patch

Metadata

Metadata

Assignees

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions