Re: how to get approximate total matching

2007-03-15 Thread senthil kumaran
Hi, Sorry for my delayed reply. I can't reproduce that OOM error with MultiSearcher now.I'll try to reproduce that error and send you the details that you asked. I've tested to search my index with Multisearcher & separate IndexSearcher.The search time by using Multisearcher is nearly equa

Re: how to get approximate total matching

2007-03-14 Thread Xiaocheng Luan
If I remember correctly, I once searched over 40G of indexes using multi-searcher with 512M max heap size, how much memory did you give the JVM? Thanks, Xiaocheng senthil kumaran <[EMAIL PROTECTED]> wrote: Hi. I have more index directories (>6) all in GB,and searching my query with single Ind

Re: how to get approximate total matching

2007-03-14 Thread Erick Erickson
How much memory are you allocating for your JVM? Because you're paying a huge search time penalty by opening and closing your searcher sequentially, it would be a good thing to not do this. But, as you say, if you're getting OOM errors, that's a problem. What is the total size of all your indexes

how to get approximate total matching

2007-03-14 Thread senthil kumaran
Hi. I have more index directories (>6) all in GB,and searching my query with single IndexSearcher to all indexes one after another.i.e. I create one IndexSearcher for index1 and search over that.Finally I close that and create new IndexSearcher for index2 and so on. If i get 200 total results