In the web search for collections in SOLR, I found only information about distributed searches, etc., but when I understand that the concept of matching collections runs on the same server instance using the same scheme, but is logically completely separate. It's right? So, I have 3 collections and a search in one collection will not lead to the results of another right? Can I search multiple collections at the same time?
But my main priority: how to create a second collection? Even a link to a good document will be appreciated. In my solr.xml I have
<cores adminPath="/admin/cores" defaultCoreName="web-collection" host="${host:}" hostPort="${jetty.port:}"> <core name="web-collection" instanceDir="." /> </cores>
Is it enough to create a second kernel entry and set different paths? as...
<cores adminPath="/admin/cores" defaultCoreName="web-collection" host="${host:}" hostPort="${jetty.port:}"> <core name="web-collection" instanceDir="web" /> <core name="test-collection" instanceDir="test" /> </cores>
What is instanceDir? Is this an index directory relative to SOLR-Home?
source share