
trejkaz at trypticon
Aug 15, 2012, 8:09 PM
Post #3 of 3
(192 views)
Permalink
|
|
Re: Why does this query slow down Lucene?
[In reply to]
|
|
On Thu, Aug 16, 2012 at 11:27 AM, zhoucheng2008 <zhoucheng2008 [at] gmail> wrote: > > +(title:21 title:a title:day title:once title:a title:month) Looks like you have a fairly big boolean query going on here, and some of the terms you're using are really common ones like "a". Are you using AND or OR for the default operator? I think AND was significantly faster. I would also consider culling stop words to get things like "a" out of the picture. I also find it interesting that Lucene doesn't normalise title:a title:a to title:a^2 or something. :) TX --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe [at] lucene For additional commands, e-mail: java-user-help [at] lucene
|