0

Here are 2 search examples,

you can see the first search for "yael0079" return an object where the email filed is yael0079@gmail.com as top score.

The second search for "yael0079@gmail.com" return the object from before somewhere far below.

Now, I know the '@' tag consider as space, but still, I would expect the same object will get the higher score.

first search

second search

Guy Assaf
  • 888
  • 9
  • 24

1 Answers1

1

In the second case, since the @ sign is considered punctuation, your query becomes yael0079 OR gmail.com. The term gmail.com matches also in other fields of the documents returned what adds to the overall relevance score. To learn more about query processing and scoring in Azure Search, please read: How full text search works in Azure Search.

Yahnoosh
  • 1,932
  • 1
  • 11
  • 13