用于提升评分的 Solr Dismax 配置

发布于 2024-11-10 07:57:17 字数 669 浏览 3 评论 0原文

我在这里看到了很多这样的主题,但实施起来仍然令人困惑。就我而言,我需要执行以下操作:

  1. 在标题和内容中搜索某些短语。 给出 title^3、text^1
  2. text 并根据 #1 中的结果

,我需要通过修改时间来提高结果,我已经尝试过这些并得到了不同的结果:

/solr/select
?q={!boost b=$dateboost v=$qq defType=dismax}
&dateboost=recip(ms(NOW/HOUR,modified),86400000,1,1)
&qq=video
&qf=title^3+text
&pf=title^3+text
&debugQuery=true

并且在 solrconfig.xml 中使用不同设置的正常查询

<str name="qf">title^3 text</str>
<str name="pf">title^3 text</str>
<str name="bf">recip(ms(NOW/HOUR,modified),86400000,1,1)</str>

我更喜欢boost 在 solrconfig 中默认设置,提前致谢。

I've seen many of this topics here but still confusing to implement it. In my case i need to do these:

  1. Search certain phrases in title & text and give title^3, text^1
  2. based on result in #1, i need to boost the results by modified time

i've tried these with different results:

/solr/select
?q={!boost b=$dateboost v=$qq defType=dismax}
&dateboost=recip(ms(NOW/HOUR,modified),86400000,1,1)
&qq=video
&qf=title^3+text
&pf=title^3+text
&debugQuery=true

And Normal Query with different setting in solrconfig.xml

<str name="qf">title^3 text</str>
<str name="pf">title^3 text</str>
<str name="bf">recip(ms(NOW/HOUR,modified),86400000,1,1)</str>

I prefer to have the boost set by default in solrconfig, thanks in advanced.

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

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

发布评论

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

评论(1

找回味觉 2024-11-17 07:57:17

最后我使用了第一个选项,因为当使用 !boost 时,solrconfig.xml 中的 dismax 处理程序配置被忽略。

Finally i used the first option, since when using !boost the dismax handler config in solrconfig.xml is being ignored.

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