So I'm using SQL Full Text Search and from what I read, CONTAINS returns matches near words, while FREETEXT returns words that have similar meaning, however I can't find any examples that validate this.
Anyway, to the point, I am using Full Text Search on a table with a description field that is max 2500 chars long and want to use FTS on this. This description will contain things like ingredients for food, what would be the best to use, CONTAINS or FREETEXT? What I want my user to search is somthing like:
"recipe for cake sugar"
and it should return the top ranked results, what would be best fo rthis, FREETEXT or CONTAINs?