I'm using the SpellCheckComponent to build term suggestions. It's working in
most cases but for few words I am not seeing suggestions. There are around
14652 in total indexed. Out of them 856 documents start with the word "feq".
When we search by "feq" we get results back but spellcheck does not return
anything. 

If our threshold is set to .001, which means 
0.0584 fraction of data has "feq", should we see the words starting with
"feq" in spellcheck suggestions?

Following is what our configuration looks like:

   <searchComponent class="solr.SpellCheckComponent" name="Suggester">
    <lst name="spellchecker">
         <str name="name">Suggester</str>
         <str
name="classname">org.apache.solr.spelling.suggest.Suggester</str>
         <str
name="lookupImpl">org.apache.solr.spelling.suggest.tst.TSTLookup</str>
         <str name="field">CopyField</str>
         <float name="threshold">0.001</float>
         <str name="buildOnCommit">false</str>
         <bool name="distrib">false</bool>
      </lst>
  </searchComponent>



--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Reply via email to