Solr.xml
Recommended for you: Get network issues from WhatsUp Gold. Not end users.
Solr for the index management is based on the concept of Core, the bottom of the Solr through Lucene to index, to index business object to each logic can be viewed as a core
<solr persistent="true" sharedLib="lib"> <cores adminPath="/admin/cores"> <core name="core0" instanceDir="core0" /> <core name="core1" instanceDir="core1" /> </cores> </solr>
The <solr> tag accepts two attributes:
-
persistent - By default, should runtime core manipulation be saved in solr.xml so that it is available after a restart.
-
sharedLib - Path to a directory containing .jar files that are added to the classpath of every core. The path is relative to solr.home (where solr.xml sits)
Recommended from our users: Dynamic Network Monitoring from WhatsUp Gold from IPSwitch. Free Download
Posted by Elliott at February 26, 2014 - 1:07 PM