有些查询不适用于 dismax solr

发布于 2024-11-19 08:44:24 字数 97 浏览 3 评论 0原文

我使用 solr 和 dismax 请求处理程序。

但是,当我使用此处理程序时,某些按字段查询的查询不起作用。

有什么问题吗?

谢谢

I use solr and dismax reqest handler.

But when I use this handler, some queries as query by field haven't worked.

What's the problem ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掌心的温暖 2024-11-26 08:44:24

例如,当使用标准 Lucene 查询解析器时,您可以使用:

http://whatever:8280/solr/fr_00/select?q=cat:7030100&wt=json&indent=true

但是当使用 dismax 时,您必须使用类似以下内容:

http://whatever:8280/solr/fr_00/select?q=7030100&qf=cat&wt=json&indent=true&defType=dismax

这也应该可以工作

&fq=cat:(7030100)

For ex, when using standard Lucene query parser, you use:

http://whatever:8280/solr/fr_00/select?q=cat:7030100&wt=json&indent=true

But when using dismax, you have to use something like:

http://whatever:8280/solr/fr_00/select?q=7030100&qf=cat&wt=json&indent=true&defType=dismax

this should also work

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