0

この Solr でこの問題が発生しています。Solr は、データベース内のファイルに基づいてスペル チェックと提案のみを行うことができます。ただし、英語の辞書を追加したいので、データベースに単語が存在しない場合でも、Solr は英語の辞書に基づいて提案を行うことができます。

solrconfig.xml で FileBasedSpellChecker を使用してこれを行う必要があることはわかっています。

 <searchComponent name=”spellcheck” class=”solr.SpellCheckComponent”&gt;
         <lst name=”spellchecker”&gt;
             <str name=”classname”&gt;solr.FileBasedSpellChecker</str>
             <str name=”name”&gt;file</str>
             <str name=”sourceLocation”&gt;spellings.txt</str>
             <str name=”characterEncoding”&gt;UTF-8</str>
             <str name=”spellcheckIndexDir”&gt;./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}}

どんな助けでも大歓迎です。ありがとう。

4

1 に答える 1

0

簡単な方法はspellings.txt、同じフォルダーに配置するsolrconfig.xmlことです。質問を正しく理解していれば。

于 2016-07-21T20:47:33.920 に答える