On 3/21/06, Grant Ingersoll <[EMAIL PROTECTED]> wrote: > I was wondering if it is possible to have one SOLR instance host multiple > indices? Otherwise, I would need to deploy a separate WAR for every SOLR > instance I want, correct?
It's not currently possible. A fair amount would have to change to support that I think... - index id in all update commands (or a change in the URL path) - index id in all query commands (or a change in the URL path) Would a single index searcher go over multiple unrelated indicies? I think not, since that would tend to cause problems for thinks like norms, term vectors, field caches, etc. It almost sounds like one would want multiple instances of Solr in the same app container. But if that's the case, you aren't saving much over just having multiple app servers. -Yonik