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 JuanCaicedo: http://wiki.apache.org/solr/SpellCheckerRequestHandler The comment on the change is: Removed additional spaces from the sample term source configuration. ------------------------------------------------------------------------------ {{{ <fieldType name="spell" class="solr.TextField" positionIncrementGap="100"> <analyzer type="index"> - <tokenizer class="solr.StandardTokenizerFactory "/> + <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/> <filter class="solr.StandardFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> @@ -37, +37 @@ <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.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/> <filter class="solr.StandardFilterFactory"/> <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> </analyzer>
