Re: Uninitialized in IndexSearcher

2010-03-09 Thread Michael McCandless
Java does that. Mike On Tue, Mar 9, 2010 at 3:57 PM, Justin wrote: > Should these be explicitly initialized to false? > > >  private boolean fieldSortDoTrackScores; >  private boolean fieldSortDoMaxScore; > > > > > - > To unsubs

Uninitialized in IndexSearcher

2010-03-09 Thread Justin
Should these be explicitly initialized to false? private boolean fieldSortDoTrackScores; private boolean fieldSortDoMaxScore; - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands

RE: Numeric Range Filter - bug or documentation oversight

2010-03-09 Thread Uwe Schindler
Hi Scott, The only possibility you may get help is to provide us with some test code that builds an index and queries it to produce the error. The problem is that you gave us not enough information about your queries and index contents. Maybe you have some problems with precisionStep wrong (mus

RE: Numeric Range Filter - bug or documentation oversight

2010-03-09 Thread Scott Smith
Thanks for looking at this Uwe. I'll check my code again, but I tried changing it several times and it did seem to make a difference. Scott -Original Message- From: Uwe Schindler [mailto:u...@thetaphi.de] Sent: Saturday, March 06, 2010 3:11 AM To: java-user@lucene.apache.org Subject: R

Re: memory management style

2010-03-09 Thread Christopher Laux
On Mon, Mar 8, 2010 at 7:52 PM, Michael McCandless wrote: > This was done for performance (to remove alloc/init/GC load). > > There are two parts to it -- first, consolidating what used to be lots > of little objects into shared byte[]/int[] blocks.  Second, reusing > those blocks. Thanks, just o

purpose of QueryParser.Query function

2010-03-09 Thread Rohit Banga
what is the use of the function *org.apache.lucene.queryParser.QueryParser.Query() * ? Rohit Banga