You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Robert Muir (JIRA)" <ji...@apache.org> on 2014/07/09 16:05:04 UTC

[jira] [Updated] (LUCENE-5809) Simplify ExactPhraseScorer

     [ https://issues.apache.org/jira/browse/LUCENE-5809?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Muir updated LUCENE-5809:
--------------------------------

    Attachment: LUCENE-5809.patch

patch: all tests pass.

I didn't benchmark heavily but it doesn't seem to hurt performance from the fighting with luceneutil that i did.

> Simplify ExactPhraseScorer
> --------------------------
>
>                 Key: LUCENE-5809
>                 URL: https://issues.apache.org/jira/browse/LUCENE-5809
>             Project: Lucene - Core
>          Issue Type: Task
>          Components: core/search
>            Reporter: Robert Muir
>         Attachments: LUCENE-5809.patch
>
>
> While looking at this scorer i see a few little things which are remnants of the past:
> * crazy heuristics to use next() over advance(): I think it should just use advance(), like conjunctionscorer. these days advance() isnt stupid anymore
> * incorrect leapfrogging. the lead scorer is never advanced if a subsequent scorer goes past it, it just falls into this nextDoc() loop.
> * pre-next()'ing: we are using cost() api to sort, so there is no need to do that.
> * UnionDocsAndPositionsEnum doesnt follow docsenum contract and set initial doc to -1
> * postingsreader advance() doesnt need to check docFreq > BLOCK_SIZE on each advance call, thats easy to remove.
> So I think really this scorer should just look like "conjunctionscorer that verifies positions on match".



--
This message was sent by Atlassian JIRA
(v6.2#6252)

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