Re: Compound Indexes Problem

2006-03-30 Thread Raghavendra Prabhu
Does changing the merge factor and setting the options to SetUseCompoundfile(false) split a single index into multiple pieces. Even i have been doing something similar and would like to know how it is done Rdgs Prabhu On 3/31/06, depsi programmer <[EMAIL PROTECTED]> wrote: > > Hello, > Thank

RE: Compound Indexes Problem

2006-03-30 Thread depsi programmer
Hello, Thanks for your responce. can you please guide me on how to break this single index into multiple pieces. when I try to do so it corrupts the index. I had created a index with max merge docs set to 10,000 with set compound indexes set to true. now I called optimize with max merge docs set

RE: Compound Indexes Problem

2006-03-30 Thread Dennis Kubes
According to the Lucene In Action book you can convert from one compound to multi-file and vice versa by setting the setCompoundFile method to true or false. But in running this myself I found that while I can convert from multi-file to compound, it doesn't convert back. Here is the code that I u