Hi all,

Index-searching works, if i type complete word (such as "übersicht").
But there are no hits, if i use wildcards (such as "über*")
Searching with wildcards and without umlauts works as well.

Can someone help me? Thanx in advance!

Here is my field definition:


       <fieldtype name="text" class="solr.TextField"
           positionIncrementGap="100">
           <analyzer type="index">
               <tokenizer class="solr.WhitespaceTokenizerFactory" />
               <filter class="solr.StopFilterFactory" ignoreCase="true"
                   words="stopwords.txt" />
               <filter class="solr.WordDelimiterFilterFactory"
generateWordParts="1" generateNumberParts="1" catenateWords="1"
                   catenateNumbers="1" catenateAll="0" />
               <filter class="solr.LowerCaseFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" protected="protwords.txt" language="German2" /> <!-- filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt" /-->
               <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
           </analyzer>
           <analyzer type="query">
               <tokenizer class="solr.WhitespaceTokenizerFactory" />
               <filter class="solr.SynonymFilterFactory"
synonyms="synonyms.txt" ignoreCase="true" expand="true" />
               <filter class="solr.StopFilterFactory" ignoreCase="true"
                   words="stopwords.txt" />
               <filter class="solr.WordDelimiterFilterFactory"
generateWordParts="1" generateNumberParts="1" catenateWords="0"
                   catenateNumbers="0" catenateAll="0" />
               <filter class="solr.LowerCaseFilterFactory" />
<filter class="solr.SnowballPorterFilterFactory" protected="protwords.txt" language="German2" /> <!-- filter class="solr.EnglishPorterFilterFactory" protected="protwords.txt" /-->
               <filter class="solr.RemoveDuplicatesTokenFilterFactory" />
           </analyzer>
       </fieldtype>

Reply via email to