如何在 SolrJ 中使用 SpellingResult 类
我正在使用 SolrJ。但通过API文档无法弄清楚如何使用特定的类来接收拼写检查器的响应。 我在 solrconfig.xml 中定义了一个搜索组件来执行检查
I'm using SolrJ. But through the API documentation could not figure out how to use the particular class to receive the response of the spell checker.
i have a search component defined in solrconfig.xml for performing the checking
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您已经找到了解决方案,无论如何,当您使用 SolrJ 访问 Solr 服务器时,
SpellingResult
类随 Solr 一起提供(如果我没记错的话)。因此,您应该使用 SolrJ 附带的特定类;QueryResponse
对象包含一个SpellCheckResponse
对象,其中包含您要查找的所有信息。希望这有帮助。
Maybe you already found the solution, anyway the
SpellingResult
class comes with Solr, while you're using SolrJ to access a Solr server, if I'm not wrong. So, you should use the specific classes that come with SolrJ; theQueryResponse
object contains aSpellCheckResponse
object with all the information you're looking for.Hope this helps.