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: Added LowerCaseFilterFactory, according to 
advise at top...
http://wiki.apache.org/solr/SpellCheckingAnalysis?action=diff&rev1=4&rev2=5

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

    <analyzer type="index">
      <tokenizer class="solr.StandardTokenizerFactory"/>
      <filter class="solr.StopFilterFactory" ignoreCase="true" 
words="stopwords.txt"/>
+     <filter class="solr.LowerCaseFilterFactory"/>
      <filter class="solr.StandardFilterFactory"/>
    </analyzer>
    <analyzer type="query">
      <tokenizer class="solr.StandardTokenizerFactory"/>
      <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" 
ignoreCase="true" expand="true"/>
      <filter class="solr.StopFilterFactory" ignoreCase="true" 
words="stopwords.txt"/>
+     <filter class="solr.LowerCaseFilterFactory"/>
      <filter class="solr.StandardFilterFactory"/>
    </analyzer>
  </fieldType>

Reply via email to