Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-2262

QueryParser should now allow leading '?' wildcards

Details

    • Improvement
    • Status: Open
    • Minor
    • Resolution: Unresolved
    • 4.0-ALPHA
    • 4.9, 6.0
    • core/queryparser
    • None
    • New, Patch Available

    Description

      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.

      Attachments

        1. LUCENE-2262_backwards.patch
          0.9 kB
          Robert Muir
        2. LUCENE-2262.patch
          9 kB
          Robert Muir

        Activity

          People

            rcmuir Robert Muir
            rcmuir Robert Muir
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: