You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2012/09/18 15:57:45 UTC

[Solr Wiki] Update of "SolrConfigXml" by jpountz

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 jpountz:
http://wiki.apache.org/solr/SolrConfigXml?action=diff&rev1=54&rev2=55

Comment:
added a CodecFactory section

  }}}
  
  <!> 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]].
+ 
+ == codecFactory ==
+ 
+ <!> [[Solr4.0]]
+ Codec factories allow your schema to use custom codecs. For example, if you want to define per-field postings formats, you can use the built-in SchemaCodecFactory:
+ {{{
+   <codecFactory name="CodecFactory" class="solr.SchemaCodecFactory" />
+ }}}
+ 
+ Please note that there are some limitations and core reloading might not work as expected when custom codec factories are defined ([[https://issues.apache.org/jira/browse/SOLR-3610|SOLR-3610]]).
  
  == indexConfig Section ==
  <!> [[Solr3.6]]