Re: NumericRangeQuery performance with 1/2 billion documents in the index

2010-01-04 Thread Kumanan Rajamanikkam
all results? The times above are just for returning the top "10" matching docs. Iterating the results costs me an extra 20 msec (at most) per result for this index. Thank you, Kumanan On Sun, Jan 3, 2010 at 12:12 AM, Uwe Schindler wrote: > Hi Kumanan, > > Just for completene

Re: NumericRangeQuery performance with 1/2 billion documents in the index

2010-01-02 Thread Kumanan
nQuery such as "pearl AND docdate:[ TO ]". Is there any way to address this performance issue with lots of matches in BooleanQuery? Thanks again, Kumanan On Sat, Jan 2, 2010 at 1:52 PM, Uwe Schindler wrote: > I forgot: > - How did you measure query time? > - Did you warm

NumericRangeQuery performance with 1/2 billion documents in the index

2010-01-02 Thread Kumanan
()); BooleanQuery bq = new BooleanQuery(); bq.add(query, BooleanClause.Occur.MUST); bq.add(rangeQuery, BooleanClause.Occur.MUST); query = bq; Am I doing something wrong? Thanks Kumanan