[ 
https://issues.apache.org/jira/browse/LUCENE-834?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12489570
 ] 

Marvin Humphrey commented on LUCENE-834:
----------------------------------------

Averaging is how I've got this implemented by default in KS.  However, all 
positions and boosts get read in at once.  TermDocs/TermPositions has been 
replaced by PostingList, which goes doc by doc.  The type of Posting assigned 
to each field (MatchPosting, ScorePosting, RichPosting, eventually 
PayloadPosting) determines how much gets read in. (KS doesn't have any queries 
that rewrite(), so it's only large docs that are an issue.)

I haven't yet worked out the mechanics of per-position boosts and phrase 
queries.

> Payload Queries
> ---------------
>
>                 Key: LUCENE-834
>                 URL: https://issues.apache.org/jira/browse/LUCENE-834
>             Project: Lucene - Java
>          Issue Type: New Feature
>          Components: Search
>            Reporter: Grant Ingersoll
>         Assigned To: Grant Ingersoll
>            Priority: Minor
>         Attachments: boosting.term.query.patch
>
>
> Now that payloads have been implemented, it will be good to make them 
> searchable via one or more Query mechanisms.  See 
> http://wiki.apache.org/lucene-java/Payload_Planning for some background 
> information and https://issues.apache.org/jira/browse/LUCENE-755 for the 
> issue that started it all.  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to