在Solr中上传字典以进行拼写检查

时间:2016-07-21 20:42:15

标签: solr lucidworks

我遇到了这个问题,这个Solr:Solr只能拼写检查并根据数据库中的文件给出建议。但是,我想添加一个英语词典,所以即使数据库中没有这个词,Solr也可以根据英语词典给出建议。

我知道我必须在solrconfig.xml中使用FileBasedSpellChecker执行此操作:

 <searchComponent name=”spellcheck” class=”solr.SpellCheckComponent”>
         <lst name=”spellchecker”>
             <str name=”classname”>solr.FileBasedSpellChecker</str>
             <str name=”name”>file</str>
             <str name=”sourceLocation”>spellings.txt</str>
             <str name=”characterEncoding”>UTF-8</str>
             <str name=”spellcheckIndexDir”>./spellcheckerFile</str>
         </lst>
     </searchComponent>

但我不知道如何将spellings.txt上传到Solr。我收到此错误:

{
  "responseHeader":{
    "status":404,
    "QTime":1},
  "response":{"numFound":0,"start":0,"docs":[]
  },
  "error":{
    "metadata":[
      "error-class","org.apache.solr.common.SolrException",
      "root-error-class","org.apache.solr.common.SolrException"],
    "msg":"Specified dictionaries do not exist: file",
    "code":404}}

非常感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:0)

简单的方法是将spellings.txt放在solrconfig.xml所在的同一文件夹中。如果我正确理解了这个问题。