在 SOLR 中搜索

发布于 2025-01-04 14:41:40 字数 111 浏览 1 评论 0原文

是否可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝咒 2025-01-11 14:41:40

这和搜索 hello AND world 是一样的吗?

我相信是这样。

或者,您可以使用过滤查询,例如?q=hello&fq =world

这可能不是“Hello world”情况下的正确解决方案,但它仍然可能是一个有趣的示例。

Is it the same thing as searching hello AND 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.

赴月观长安 2025-01-11 14:41:40

使用过滤查询是一个很好的解决方案。唯一的区别在于对文档进行评分,过滤查询中使用的任何内容都不会用于评分。

仅在

?q=hello&fq=world

hello 中得分。

然而

?q=hello+AND+world

两个词都得分

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

?q=hello&fq=world

only hello is scored.

However in

?q=hello+AND+world

both words are scored

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文