Elasticsearch Query DSL 整理总结(四)—— Multi Match Query (3)

0.0 < n < 1.0 最佳字段评分与其它字段结合评分

GET multimatchtest/_search { "query": { "multi_match": { "query": "blabla like", "fields": [ "subject", "message"], "type": "cross_fields", "tie_breaker": 0.5 } } } 小结

Muti-Match 是非常常用的全文搜索,它构建在 Match 查询的基础上,同时又添加了许多类型来符合多字段搜索的场景。最后,请在通过思维导图一起来回顾下本节的知识点吧.

Multi Match

参考

https://www.elastic.co/guide/en/elasticsearch/reference/6.3/query-dsl-multi-match-query.html

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsppyx.html