Dear James

Thank you for your reply.

I tested analyser without “solr.EnglishPossessiveFilterFactory” but still no
luck. I also updated analyser please find this below.

                <fieldType name="text_suggest" class="solr.TextField"
positionIncrementGap="100">
                  <analyzer>
                    <tokenizer class="solr.WhitespaceTokenizerFactory" />
                    <filter class="solr.StopFilterFactory" ignoreCase="true"
words="${resources}/StopWords/stopwords.txt"/>
                    <filter class="solr.LowerCaseFilterFactory"/>
                  </analyzer>
                </fieldType>


with above configuration for “text_sugggest” i got following results

For Correct Bangla Word: সহজ Solr response is 
Note: i set rows to 0 to skip results

<lst name="responseHeader">
  <int name="status">0</int>
  <int name="QTime">2</int>
  <lst name="params">
    <str name="q">সহজ</str>
    <str name="indent">true</str>
    <str name="rows">0</str>
    <str name="wt">xml</str>
    <str name="_">1438787238383</str>
  </lst>
</lst>
<result name="response" numFound="249" start="0">
</result>
<lst name="spellcheck">
  <lst name="suggestions">
    <bool name="correctlySpelled">true</bool>
  </lst>
</lst>
</response>

For an Incorrect Bangla Word: সহগ where i just changed last letter and Solr
response is

<lst name="responseHeader">
  <int name="status">0</int>
  <int name="QTime">7</int>
  <lst name="params">
    <str name="q">সহগ</str>
    <str name="indent">true</str>
    <str name="rows">0</str>
    <str name="wt">xml</str>
    <str name="_">1438787208052</str>
  </lst>
</lst>
<result name="response" numFound="0" start="0">
</result>
<lst name="spellcheck">
  <lst name="suggestions">
    <bool name="correctlySpelled">false</bool>
  </lst>
</lst>
</response>




--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-spell-check-not-showing-any-suggestions-for-other-language-tp4220950p4221033.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to