Re: Early termination in Lucene 8

2020-01-30 Thread Mikhail Khludnev
He, Wei. Feel free to followup https://issues.apache.org/jira/browse/SOLR-13289 On Thu, Jan 23, 2020 at 11:14 PM Wei wrote: > Thanks Mikhail. Do you know of any example on query parser with WAND? > > On Thu, Jan 23, 2020 at 1:02 AM Mikhail Khludnev wrote: > > > If one creates query parser wrap

Re: Early termination in Lucene 8

2020-01-23 Thread Mikhail Khludnev
Never heard of that. On Thu, Jan 23, 2020 at 11:14 PM Wei wrote: > Thanks Mikhail. Do you know of any example on query parser with WAND? > > On Thu, Jan 23, 2020 at 1:02 AM Mikhail Khludnev wrote: > > > If one creates query parser wrapping queries with WAND it just produce > > incomplete docse

Re: Early termination in Lucene 8

2020-01-23 Thread Wei
Thanks Mikhail. Do you know of any example on query parser with WAND? On Thu, Jan 23, 2020 at 1:02 AM Mikhail Khludnev wrote: > If one creates query parser wrapping queries with WAND it just produce > incomplete docset (I guess), which will be passed to facet component and > produce fewer count

Re: Early termination in Lucene 8

2020-01-23 Thread Mikhail Khludnev
If one creates query parser wrapping queries with WAND it just produce incomplete docset (I guess), which will be passed to facet component and produce fewer counts. On Thu, Jan 23, 2020 at 2:11 AM Wei wrote: > Hi, > > I am excited to see Lucene 8 introduced BlockMax WAND as a major speed > impr

Early termination in Lucene 8

2020-01-22 Thread Wei
Hi, I am excited to see Lucene 8 introduced BlockMax WAND as a major speed improvement https://issues.apache.org/jira/browse/LUCENE-8135. My question is, how does it integrate with facet request, when the numFound won't be exact? I did some search but haven't found any documentation on this. Any