Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change 
notification.

The "SolrConfigXml" page has been changed by HossMan:
http://wiki.apache.org/solr/SolrConfigXml?action=diff&rev1=53&rev2=54

Comment:
SOLR-3592

  `<lib>` directives can be specified in your solrconfig.xml to specify where 
Solr should look to load SolrPlugins.  The 
[[http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/example/solr/conf/solrconfig.xml|example
 solrconfig.xml]] contains main examples of the syntax.
  
  == dataDir parameter ==
- Used to specify an alternate directory to hold all index data other than the 
default ./data under the Solr home. If replication is in use, this should match 
the replication configuration.  If this directory is not absolute, then it is 
relative to the current working directory of the servlet container.
+ Used to specify an alternate directory to hold all index data other than the 
default ./data under the Solr home. If replication is in use, this should match 
the replication configuration.  If this directory is not absolute, then it is 
relative to the instanceDir of the SolrCore configuration.
  
  {{{
    <dataDir>/var/data/solr</dataDir>
  }}}
+ 
+ <!> NOTE: begining with [[Solr4.0]] attempting to change the {{{<dataDir>}}} 
and then RELOAD the core will not work because it is a 
[[CoreAdmin#LiveReload|Live Reload]].
  
  == indexConfig Section ==
  <!> [[Solr3.6]]
  These settings control low-level behavior of indexing. Please see comments in 
the example solrconfig.xml for details.
-        
+ 
+ <!> NOTE: begining with [[Solr4.0]] attempting to change Index Writer related 
settings in {{{<indexConfig>}}} and then RELOAD the core will not work because 
it is a [[CoreAdmin#LiveReload|Live Reload]].
+ 
  Note: In versions prior to 3.6, there were two different sections named 
<indexDefaults> and <mainIndex>, which are now replaced with this one 
<indexConfig> section. You can still use the old config as is in 3.6 and 4.x, 
but need to migrate when bumping luceneMatchVersion. Easiest way to migrate is 
to start with the example <indexConfig> section which has everything commented 
out, using the defaults, and then customize if necessary.
  
  == Update Handler Section ==

Reply via email to