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
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
: 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
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
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
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