Re: optimize an index as fast as possible

2009-03-18 Thread Marc Sturlese
Thanks Mark, going to try now... markrmiller wrote: > > Hmm - > > Have you tested search speed (without optimizing) using a merge factor > of 2? If the speed is acceptable (should be much faster than MF:10), try > a merge factor of 3. Using a merge factor of 2 or 3 and never optimizing > sho

Re: optimize an index as fast as possible

2009-03-18 Thread Mark Miller
Hmm - Have you tested search speed (without optimizing) using a merge factor of 2? If the speed is acceptable (should be much faster than MF:10), try a merge factor of 3. Using a merge factor of 2 or 3 and never optimizing should keep searches relatively fast, but also leave a lot of the index

Re: optimize an index as fast as possible

2009-03-17 Thread Marc Sturlese
Thanks Mark, that really did the job! The speed loss in update time is more than compensated at optimizing time! Now I am trying to do another test... but not sure if Lucene have this option, I am using Lucene 2.9-dev. As I am working with 3G index and always have to optimize (as I said before,

Re: optimize an index as fast as possible

2009-03-16 Thread Mark Miller
Marc Sturlese wrote: Hey there, I am creating an index of 3G... it's fast indexing but optimization takes about 10 min. I need to optimize it every time I update as if I don't do that, search requests will be much slower. Wich parameter configuration would be the best to make optimize as fast as