Posts Tagged ‘stopwords’
MYSQL – Disabling FULLTEXT Search stopwords
Friday, January 15, 2010 0:38 1 CommentTo disable MySQL FULLTEXT Search stopwords open the mysql config file and below [mysqld] add the following line: ft_stopword_file = “” By setting the ft_stopword_file value to an empty string the usual stopwords won’t be ignored any more. Here is what the manual says about setting a new stopwords file: To override the default stopword [...]