Searching on multiple cores using MultiSearcher

2013-08-05 Thread Zhang, Lisheng
Hi, At lucene level we have MultiSearcher to search a few cores at the same time with same query, at solr level can we perform such search (if using same config/schema)? Here I donot mean to search across shards of the same collection but independent collections? Thanks very much for helps, L

Re: using multisearcher

2009-04-16 Thread Brent Palmer
Thanks Hoss. I haven't had time to try it yet, but that is exactly the kind of help I was looking for. Brent Chris Hostetter wrote: : As for the second part, I was thinking of trying to replace the standard : SolrIndexSearcher with one that employs a MultiSearcher. But I'm not very : famili

Re: using multisearcher

2009-04-14 Thread Chris Hostetter
: As for the second part, I was thinking of trying to replace the standard : SolrIndexSearcher with one that employs a MultiSearcher. But I'm not very : familiar with the workings of Solr, especially with respect to the caching : that goes on. I thought that maybe people who are more familiar wi

Re: using multisearcher

2009-04-08 Thread Brent Palmer
Hi Hoss, The indexes are local. Also they are very different sizes and I think that the merged results could be really wonky when using DistributedSearch because of it (although I might be totally wrong about that). As for the second part, I was thinking of trying to replace the standard S

Re: using multisearcher

2009-04-07 Thread Chris Hostetter
If you've been using a MultiSearcher to query multiple *remote* searchers, then Distributed searching in solr should be a appropriate. if you're use to useing MultiSearcher as a way of aggregating from multiple *local* indexes distributed searching is probably going to seem slow compared to wh

using multisearcher

2009-03-27 Thread Brent Palmer
Hi everybody, I'm interested in using Solr to search multiple indexes at once. We currently use our own search application which uses lucene's multisearcher. Has anyone attempted to or successfully replaced SolrIndexSearcher with some kind of multisearcher? I have looked at the Distributed