You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Alan Woodward (JIRA)" <ji...@apache.org> on 2018/03/28 14:44:00 UTC

[jira] [Created] (LUCENE-8229) Add a method to Weight to retrieve matches for a single document

Alan Woodward created LUCENE-8229:
-------------------------------------

             Summary: Add a method to Weight to retrieve matches for a single document
                 Key: LUCENE-8229
                 URL: https://issues.apache.org/jira/browse/LUCENE-8229
             Project: Lucene - Core
          Issue Type: New Feature
            Reporter: Alan Woodward
            Assignee: Alan Woodward


The ability to find out exactly what a query has matched on is a fairly frequent feature request, and would also make highlighters much easier to implement.  There have been a few attempts at doing this, including adding positions to Scorers, or re-writing queries as Spans, but these all either compromise general performance or involve up-front knowledge of all queries.

Instead, I propose adding a method to Weight that exposes an iterator over matches in a particular document and field.  It should be used in a similar manner to explain() - ie, just for TopDocs, not as part of the scoring loop, which relieves some of the pressure on performance.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org