Let's say I have 2 documents in my MongoDB database:
Document 1:
title: "elephant is an elephant"
description: "this elephant is an elephant"
Document 2:
title: "duck"
description: "duck is not an elephant"
How can I make Atlas search give both these results the same search score for "elephant"? I want it to only look for a keyword once and not weight the result higher if the keyword appears more often.
Note: Matches of different words should still rank higher than matching a single word. When the user searches for “duck elephant”, document 2 should be listed higher because it matches both words.