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

[jira] [Updated] (LUCENE-2780) optimize spantermquery

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

David Smiley updated LUCENE-2780:
---------------------------------

    Fix Version/s:     (was: 4.7)
                   4.8

> optimize spantermquery
> ----------------------
>
>                 Key: LUCENE-2780
>                 URL: https://issues.apache.org/jira/browse/LUCENE-2780
>             Project: Lucene - Core
>          Issue Type: Improvement
>          Components: core/search
>            Reporter: Robert Muir
>             Fix For: 4.8
>
>         Attachments: LUCENE-2780.patch
>
>
> Looking at http://www.lucidimagination.com/search/document/c2c6f660ddde4f7f/dismaxqparserplugin_and_tokenization ,
> I saw a user building DisjunctionMaxQuery / BooleanQuery with SpanTermQuerys.
> I wonder if users know that doing this is much slower than just using TermQuery?
> I agree it makes little sense to use SpanTermQuery if you arent going to use it inside a SpanNear etc,
> but on the other hand, I think its a little non-intuitive that it wouldnt be just as fast in a case like this.
> I could see this complicating queryparsing etc for users that want to sometimes use positions etc.
> SpanTermQuery is the same as TermQuery, except tf is computed as (#of spans * sloppyFreq(spanLength)
> For this case, #ofspans = tf and spanLength for a single term is always 1.
> Maybe we should optimize SpanTermQuery to return TermScorer, with just this special tf computation.
> This would avoid reading positions for anyone that does this.



--
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