solr - Problem facing while querying for wild card queries -


i using solr indexing , searching in application. facing strange problem while querying wild card when search di?mo?d, results diamond when search diamo?? no results.what reason please tell.

edit:

 <fieldtype name="text" class="solr.textfield" positionincrementgap="100">       <analyzer type="index">         <tokenizer class="solr.whitespacetokenizerfactory"/>         <!-- in example, use synonyms @ query time         <filter class="solr.synonymfilterfactory" synonyms="index_synonyms.txt" ignorecase="true" expand="false"/>         -->         <filter class="solr.stopfilterfactory" ignorecase="true" words="stopwords.txt"/>         <filter class="solr.worddelimiterfilterfactory" generatewordparts="1" generatenumberparts="1" catenatewords="1" catenatenumbers="1" catenateall="0" splitoncasechange="1"/>         <filter class="solr.lowercasefilterfactory"/>         <filter class="solr.synonymfilterfactory" synonyms="synonyms.txt" ignorecase="true" expand="true"/>         <filter class="solr.englishporterfilterfactory" protected="protwords.txt"/>         <filter class="solr.removeduplicatestokenfilterfactory"/>         <filter class="solr.reversedwildcardfilterfactory" withoriginal="true" maxposasterisk="6" maxposquestion="2" maxfractionasterisk="0.33"/>        </analyzer>       <analyzer type="query">         <tokenizer class="solr.whitespacetokenizerfactory"/>         <filter class="solr.synonymfilterfactory" synonyms="synonyms.txt" ignorecase="true" expand="false"/>         <filter class="solr.stopfilterfactory" ignorecase="true" words="stopwords.txt"/>         <filter class="solr.worddelimiterfilterfactory" generatewordparts="1" generatenumberparts="1" catenatewords="0" catenatenumbers="0" catenateall="0" splitoncasechange="1"/>         <filter class="solr.lowercasefilterfactory"/>         <filter class="solr.englishporterfilterfactory" protected="protwords.txt"/>         <filter class="solr.removeduplicatestokenfilterfactory"/>         </analyzer>     </fieldtype> 


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -