如何实现 solr 拼写检查器?
我想使用 solr 在我的搜索应用程序中实现拼写检查器组件。需要更改什么配置?
I want to implement a spellchecker component in my search application using solr. What configuration is required to change for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将以下部分添加到 solrconfig.xml
此配置示例来自 Solr Wiki,
添加此内容后,您可以请求构建拼写检查器索引,
请注意不要在每个请求中包含查询的最后部分,因为这将在您请求时始终构建拼写索引,因此
前一个变成在第一个请求之后
在前面的 XML 文本中不要忘记将字段拼写替换为您想要构建拼写检查器的字段
现在您可以感受到拼写检查的力量
Add the following section to your solrconfig.xml
This config sample from Solr Wiki ,
After adding this you can request to build spellchecker index
Note to not include the last part of the query in each request because this woill build the spelling index all time you request so
the previous becomes after the first request
In the previous XML sextion son't forget to replace the field spell by the field on which you want to build your spellchecker against
And now you can feel the power of spellchecking