3

目前正在开发 Solr 3.6 中的 Suggester。我已经通过提供外部字典源配置了 Suggester。

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>

来源.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”中。

可能是什么原因?如何在 Suggester 中忽略大小写敏感?

4

1 回答 1

1

我认为这篇文章会对你有所帮助,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"/>
于 2015-04-28T00:51:43.757 回答