我们正在尝试使用Solr来更正搜索框中某些测试的拼写。我们发现它的工作原理如下:
http://localhost:8080/solr/collection1/spell?q=badspelled&spellcheck=true
它返回一组建议的术语。但我们需要的不是建议清单,而是Solr直接使用第一个建议进行搜索。这可能吗?
答案 0 :(得分:1)
您需要将“spellcheck.collate = true”参数添加到第一个搜索查询中,然后使用响应中的“排序规则”值来触发具有该值的第二个查询。
插件页面中的示例:
http://localhost:8983/solr/spell?q=price:[80 TO 100] delll ultrashar&spellcheck=true&spellcheck.extendedResults=true&spellcheck.collate=true
返回建议:
<lst name="spellcheck">
<lst name="suggestions">
<lst name="delll">
<int name="numFound">1</int>
<int name="startOffset">18</int>
<int name="endOffset">23</int>
<int name="origFreq">0</int>
<arr name="suggestion">
<lst>
<str name="word">dell</str>
<int name="freq">2</int>
</lst>
</arr>
</lst>
<lst name="ultrashar">
<int name="numFound">1</int>
<int name="startOffset">24</int>
<int name="endOffset">33</int>
<int name="origFreq">0</int>
<arr name="suggestion">
<lst>
<str name="word">ultrasharp</str>
<int name="freq">2</int>
</lst>
</arr>
</lst>
<bool name="correctlySpelled">false</bool>
<str name="collation">price:[80 TO 100] dell ultrasharp</str>
</lst>
</lst>
然后使用建议的查询触发另一个查询:
http://localhost:8983/solr/spell?q=price:[80 TO 100] dell ultrasharp&spellcheck=true&spellcheck.extendedResults=true&spellcheck.collate=true