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

MultiSearcher does not work with MultiTermQuery or PrefixQuery

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.2
    • None
    • core/search
    • None
    • Operating System: All
      Platform: Other

    • 12667

    Description

      The multiSearch class reuses Query objects. Unfortunately some Query sub-classes
      initialize the search with terms from the index that they are first used on.
      This means that subsequent uses on other indexes can result in missing hits.

      For example subclasses of MultiTermQuery pre "populate" their terms from the
      first index. If this query is used again then the terms are not reset so the
      query is in effect done over terms extracted from the 1st index and not the 2nd.

      So the query

      a*b

      when expanded using terms from the first index as

      a1b a2b a3b

      and it is this query that is performed multiple times.

      If a second index has the terms

      a1b a2b a3b a4b a5b

      then potential results are missing. The latter two terms are not considered in
      the search.

      This can easily be seen by "reversing" the order of Searcher objects in a
      MultiSearcher query. Different results can be displayed depending on the ordering.

      The solution would be to allow queries to be "reset" - thus removing the cache
      terms objects.

      Attachments

        Activity

          People

            java-dev@lucene.apache.org Lucene Developers
            alt@picnic.demon.co.uk Andy Thomas
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: