增强太阳黑子 (solr)
在太阳黑子中,您可以使用 :boost 选项提示相关性:
text :name, :boost => 2.0
从这个链接,我认为默认的提升是 1: http://lucene.apache.org/java/2_4_0/queryparsersyntax.html
我的问题是太阳黑子增强量是否直接传递到lucene增强?我想知道我是否可以做 :boost => .5
降低某个结果的相关性。
In sunspot you can hint relevancy using the :boost option:
text :name, :boost => 2.0
From this link, I think that the default boost is 1:
http://lucene.apache.org/java/2_4_0/queryparsersyntax.html
My question is whether the sunspot boost amount is passed directly to the lucene boost? I'm wondering if I can do :boost => .5
to lower the relevancy of a certain result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你说得完全正确。 Sunspot 在组装
qf
参数时将使用这些:boost
选项来提高查询时间。Yes, you are exactly right. Sunspot will use those
:boost
options for query-time boosting when it assembles theqf
parameter.