Elasticsearch - Search Results and Scoring
Given this Elasticsearch query snippet, which document will rank higher?
{
"query": {
"match": {
"title": "apple"
}
}
}
Documents:
1. {"title": "apple pie recipe"}
2. {"title": "banana apple smoothie"}
3. {"title": "fruit salad"}
