Re: Writer memory released after flush

2009-01-09 Thread Ganesh
eader. Regards Ganesh - Original Message - From: "Michael McCandless" To: Sent: Friday, January 09, 2009 4:47 PM Subject: Re: Writer memory released after flush Calling writer.setRamBufferSizeMB(X) won't immediately free any held RAM; on making the next change to th

Re: Writer memory released after flush

2009-01-09 Thread Michael McCandless
uffer. OR closing and opening writer will reset the buffer Please let me know, is there any other way? Regards Ganesh - Original Message - From: "Michael McCandless" > To: Sent: Thursday, January 08, 2009 6:44 PM Subject: Re: Writer memory released after flush Opening a w

Re: Writer memory released after flush

2009-01-08 Thread Ganesh
buffer. OR closing and opening writer will reset the buffer Please let me know, is there any other way? Regards Ganesh - Original Message - From: "Michael McCandless" To: Sent: Thursday, January 08, 2009 6:44 PM Subject: Re: Writer memory released after flush Openin

Re: Writer memory released after flush

2009-01-08 Thread Michael McCandless
al Message - From: "Michael McCandless" > To: Sent: Thursday, January 08, 2009 3:52 PM Subject: Re: Writer memory released after flush IndexWriter holds onto the memory & recycles it. It's best to close the writer if you need to release the memory. Mike Ganesh

Re: Writer memory released after flush

2009-01-08 Thread Ganesh
08, 2009 3:52 PM Subject: Re: Writer memory released after flush IndexWriter holds onto the memory & recycles it. It's best to close the writer if you need to release the memory. Mike Ganesh wrote: I am maintaing multiple indexes and all writers will be opened. Based on some cri

Re: Writer memory released after flush

2009-01-08 Thread Michael McCandless
IndexWriter holds onto the memory & recycles it. It's best to close the writer if you need to release the memory. Mike Ganesh wrote: I am maintaing multiple indexes and all writers will be opened. Based on some criteria, the document is added to a particular index. I am using 50 MB of

Writer memory released after flush

2009-01-08 Thread Ganesh
I am maintaing multiple indexes and all writers will be opened. Based on some criteria, the document is added to a particular index. I am using 50 MB of RAM buffer size. Whether the buffer will be released once flush or optinization done or the writer will maintain the memory and recyle it. Re