gpt4 book ai didi

configuration - 在 Solr Suggester 中使用多个字典

转载 作者:行者123 更新时间:2023-12-02 02:04:49 25 4
gpt4 key购买 nike

我正在使用 Suggester 组件进行自动完成。我想提供各种类型的建议,例如位置、公司名称、产品和字典单词。

这些列表的大小和波动性各不相同,因此将它们全部保存在同一个文本文件中并不是最方便的。

我正在使用文本文件,因为我希望能够为建议的条款增加权重。

是否可以使用多个文本文件?我尝试了以下方法:

<!-- WFSTLookup suggest component -->
<searchComponent class="solr.SpellCheckComponent" name="suggestword">
<lst name="spellchecker">
<str name="name">suggestword</str>
<str name="classname">org.apache.solr.spelling.suggest.Suggester</str>
<str name="lookupImpl">org.apache.solr.spelling.suggest.fst.WFSTLookupFactory</str>
<str name="storeDir">suggestword</str>
<str name="buildOnCommit">false</str>

<!-- Suggester properties -->
<bool name="exactMatchFirst">true</bool>

<str name="sourceLocation">../data/words.txt</str>
<str name="sourceLocation">../data/cities.txt</str>
</lst>

但是在重启tomcat并重建字典后,第二个列表,即城市,显然没有被检测到。这可以做到吗?如果不是,您建议如何管理不同的词典?

最佳答案

对于 SOLR 5.2,请参阅 https://cwiki.apache.org/confluence/display/solr/Suggester 处的多个词典部分

在 solrconfig.xml 中,使用相应的源文件定义您的多个建议词典,例如:

<searchComponent name="suggest" class="solr.SuggestComponent">
<lst name="suggester">
<str name="name">words_suggester</str>
<str name="lookupImpl">FuzzyLookupFactory</str>
<str name="dictionaryImpl">FileDictionaryFactory</str>
<str name="sourceLocation">words.txt</str>
<str name="storeDir">words_dict</str>
<str name="suggestAnalyzerFieldType">string</str>
</lst>
<lst name="suggester">
<str name="name">cities_suggester</str>
<str name="lookupImpl">FuzzyLookupFactory</str>
<str name="dictionaryImpl">FileDictionaryFactory</str>
<str name="sourceLocation">cities.txt</str>
<str name="storeDir">cities_dict</str>
<str name="suggestAnalyzerFieldType">string</str>
</lst>
...
</searchComponent>

根据我的测试,似乎不同的 storeDir 必须用于每个基于 FileDictionaryFactory 的建议者(否则它们会相互覆盖)。

然后,在“/suggest”请求处理程序中使用它们,例如:

<requestHandler name="/suggest" class="solr.SearchHandler" startup="lazy">
<lst name="defaults">
<str name="suggest">true</str>
<str name="suggest.count">10</str>
<str name="suggest.dictionary">words_suggester</str>
<str name="suggest.dictionary">cities_suggester</str>
...
</lst>
<arr name="components">
<str>suggest</str>
</arr>
</requestHandler>

关于configuration - 在 Solr Suggester 中使用多个字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15661550/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com