Dear Wiki user,

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

The "SpellCheckingAnalysis" page has been changed by DavidSmiley.
The comment on this change is: Set omitNorms and named the field type textSpell 
which is the field type referenced in Solr's example solrconfig.xml.
http://wiki.apache.org/solr/SpellCheckingAnalysis?action=diff&rev1=2&rev2=3

--------------------------------------------------

  That being said, a common configuration for spell checking is:
  
  {{{
- <fieldType name="spell" class="solr.TextField" positionIncrementGap="100">
+ <fieldType name="textSpell" class="solr.TextField" positionIncrementGap="100" 
omitNorms="true">
    <analyzer type="index">
      <tokenizer class="solr.StandardTokenizerFactory"/>
      <filter class="solr.StopFilterFactory" ignoreCase="true" 
words="stopwords.txt"/>

Reply via email to