目前正在Solr 3.6中使用Recommendationer。我已经通过提供外部词典源配置了纸记提示器。

solrconfig.xml:

 <searchComponent name="spellcheck" class="solr.SpellCheckComponent">

    <str name="queryAnalyzerFieldType">textSpell</str>

  <lst name="spellchecker">
      <str name="name">suggest</str>
      <str name="classname">org.apache.solr.spelling.suggest.Suggester</str>
      <str name="lookupImpl">org.apache.solr.spelling.suggest.tst.TSTLookup</str>
      <float name="threshold">0.005</float>
      <str name="buildOnCommit">true</str>
    <bool name="exactMatchFirst">true</bool>
     <str name="sourceLocation">D:\source.txt</str>

    </lst>

  </searchComponent>


Source.txt:

nokia   2
nokia 5233  3
nokia 5130  2
Symbian 1
samsung 6712    2
htc 2
HTC Wild    6
htc one 7
Nokia 1280  5


当我尝试使用“ n”搜索时,它提示我以下结果

nokia 5233
nokia 5130
nokia


但结果不包含在“诺基亚1280”中。

可能是什么原因?
如何忽略建议程序中的区分大小写?

最佳答案

我认为这篇文章对您有帮助,https://cwiki.apache.org/confluence/display/solr/Suggester

尝试在建议程序中使用“字段”参数

    <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
       <str name="queryAnalyzerFieldType">textSpell</str>
       <lst name="spellchecker">
          <str name="name">suggest</str>
          <str name="classname">org.apache.solr.spelling.suggest.Suggester</str>
          <str name="lookupImpl">org.apache.solr.spelling.suggest.tst.TSTLookup</str>
          <float name="threshold">0.005</float>
          <str name="buildOnCommit">true</str>
          <bool name="exactMatchFirst">true</bool>
          <str name="field">phoneName</str>
          <str name="sourceLocation">D:\source.txt</str>
       </lst>
    </searchComponent>


字段类型定义

    <fieldType class="solr.TextField" name="textSuggest" positionIncrementGap="100">
       <analyzer>
          <tokenizer class="solr.StandardTokenizerFactory"/>
          <filter class="solr.StandardFilterFactory"/>
          <filter class="solr.LowerCaseFilterFactory"/>
       </analyzer>
    </fieldType>


字段定义

    <field name="phoneName" type="string" indexed="true" stored="false" required="false" multiValued="false"/>

关于solr - 如何忽略建议程序中的区分大小写? Solr 3.6,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12490480/

10-11 23:04