I have an Elasticsearch database in which all documents have a title field and are queried by this field.
By default, Elasticsearch search gives higher score to document with short title. But, in my use case, short titles are irrelevant.
For example, when I search for 'Deep Learning' the first results are
- 'Deep Learning'
- 'Machine Learning and Deep Learning'
- 'Semi-Supervised Deep Learning With Memory'
I would like the document titled 'Semi-Supervised Deep Learning With Memory' to appear before the document titled 'Deep Learning'.
Is there any solution to achieve that without changing the mapping?
Thanks