在弹性搜索中查询时如何发送提升值?
我需要向弹性搜索中的特定查询添加搜索相关性分数。 如何在查询时为特定字段添加提升分数?
I need to add a search relevancy score to a particular query in elastic search.
How can I add a boosting score for a particular filed while querying?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您查看 http://www.elasticsearch.org/guide/reference/ query-dsl/query-string-query.html
它向您展示了如何在查询时向字段添加提升。例如,
请注意,但这可能会大大减慢您的查询速度,因此我会对其进行测试或在映射文件中使用提升。
If you look at http://www.elasticsearch.org/guide/reference/query-dsl/query-string-query.html
it shows you how to add boosting to a field at query time. For example
Note however there is potential for this to slow down your query considerably so I would test it or use boosting in the mapping file.