在 SOLR 中搜索
是否可以在 SOLR 中的先前命中列表中进行搜索?例如,首先搜索“hello”,然后在结果列表中,用户想要搜索包含“world”的记录。这与搜索 hello AND world 是一样的吗?
Is it possible to search within a previous hit list in SOLR? E.g. first search "hello", then on the result list, user wants to search records containing "world". Is it the same thing as searching hello AND world?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信是这样。
或者,您可以使用过滤查询,例如
?q=hello&fq =world
这可能不是“Hello world”情况下的正确解决方案,但它仍然可能是一个有趣的示例。
I believe so.
Alternately, you can use a filter query, e.g.
?q=hello&fq=world
This probably isn't the right solution in the "Hello world" case, but it may be an interesting example nonetheless.
使用过滤查询是一个很好的解决方案。唯一的区别在于对文档进行评分,过滤查询中使用的任何内容都不会用于评分。
仅在
hello 中得分。
然而
两个词都得分
Using filter query is a good solution. Only difference is in scoring documents, whatever is used in filter query is not used in scoring.
In
only hello is scored.
However in
both words are scored