SOLR 查询提升

发布于 2025-01-08 19:13:25 字数 297 浏览 0 评论 0原文

我像这样查询 Solr:

http://XXX.xx.xx:xxx/solr/select?q=name:(pizza)&fq=locationid:6050 OR _query_:"{!bbox}"&sfield=location&pt=34.0211224, -118.39646&d=8

我正在名称列上搜索记录,并且该记录必须落在 8 公里边界或 locationid 列值 6050 上。

现在我想提升与 locationid 列值 6050 匹配的记录。

I'm querying Solr like this:

http://XXX.xx.xx:xxx/solr/select?q=name:(pizza)&fq=locationid:6050 OR _query_:"{!bbox}"&sfield=location&pt=34.0211224, -118.39646&d=8

I am searching for records on name column and the record must fall on 8 kms Boundry OR locationid column value 6050.

Now I want to boost records which match locationid column value 6050.

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

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

发布评论

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

评论(1

落花随流水 2025-01-15 19:13:25

If you use the locationid:6050 filter within the filter query parameter it won't influence the score. You should first of all move your filter inside the q parameter. Then you can use the edismax or dismax query parser and play around with the weight of your filter like this: locationid:6050^2. Have a look here.

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