Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by YonikSeeley: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters The comment on the change is: StopFilter ignoreCase ------------------------------------------------------------------------------ }}} A customized stop word list may be specified with the "words" attribute in the schema. + Optionally, the "ignoreCase" attribute may be used to ignore the case of tokens when comparing to the stopword list. {{{ <fieldtype name="teststop" class="solr.TextField"> <analyzer> <tokenizer class="solr.LowerCaseTokenizerFactory"/> - <filter class="solr.StopFilterFactory" words="stopwords.txt" /> + <filter class="solr.StopFilterFactory" words="stopwords.txt" ignoreCase="true"/> </analyzer> </fieldtype> }}}
