Here is the list of all such stopwords
The bad thing is that this behavior does not change even if you search in BOOLEAN mode. This note describes this as a requested fix for some later MySQL release.
Anyway, if you want to search for just ANY word, without taking in consideration the 'stopwords' list of MySQL, add this line
ft_stopword_file=""
Next:
a) restart mysql daemon / service
b) rebuild tables indexes, e.g. by the following SQL comand:
REPAIR TABLE `Texts` QUICK
Now you can search for words like "can", "me" and "you" and - what a surprise! - find the records containing them.
No comments:
Post a Comment