We have a full text index set up to use for searches on a website (mysql/php).
The searches work great most of the time, but we keep running into these strange errors.
For example:
1) This works: "Chinese Wok"
2) This doesn't: "First Wok"
My assumption is that the 2nd doesn't work because: a) It kicks out 'wok' since it's only 3 letters b) It kicks out 'first' because it's in some list of words to ignore.
Are my assumptions correct?
If so, how would I go about tweaking things to both: a) Somehow whitelist 'first' as a word to use in the search b) Somehow whitelist 'wok' despite it being a 3 letter word only
Thanks as always!