Boosting in Elasticsearch

后端 未结 2 1823
甜味超标
甜味超标 2021-02-08 03:32

I am new to elasticsearch. In elasticsearch we can use the term boost in almost all queries. I understand it\'s used for modify score of documents. But i can\'t find actual use

2条回答
  •  执笔经年
    2021-02-08 04:32

    Boost at query time won't modify your index. It only applies boost factor on fields when searching.

    I prefer boost at query time as it's more flexible. If you need to change your boost rules and you had set it at index time, you will probably need to reindex.

提交回复
热议问题