我正在使用 apache-solr-1.4.1。我有一个主人和一个奴隶。当我在主服务器上执行“完全导入”时,索引会复制到从服务器,但拼写检查索引不会。在主人我有:
<str name="confFiles">solrconfig_slave.xml:solrconfig.xml,schema.xml,stopwords.txt,elevate.xml,protwords.txt,synonyms.txt</str>`
在 solrconfig.xml 和 solrconfig_slave.xml 文件中,我有以下设置:
<searchComponent name="spellcheck" class="solr.SpellCheckComponent">
<str name="queryAnalyzerFieldType">textSpell</str>
<lst name="spellchecker">
<str name="name">default</str>
<str name="field">didYouMean</str>
<str name="spellcheckIndexDir">./spellchecker</str>
<str name="buildOnCommit">true</str>
</lst>
</searchComponent>
如果我使用“&spellcheck.build=true”查询从属设备,则构建索引。请帮忙