I have a PHP/MySQL installation. I’m working on a program that uses a MySQL Fulltext search. I want to reduce the min word length to three. I know I can do this by changing the ft_min_word_length
global variable and restarting MySQL.
My problem is that the MySQL server is running several other databases, including two WordPress blogs. If I change that global variable, will this affect/muck up the WordPress posts search? What algorithm does WordPress use? Does it use MySQL FULLTEXT?
Is there a way to set ft_min_word_length
for only one database? Should I worry about it?
I’m using MySql 5.0.5, PHP 5, and WordPress 2.8 on IIS 6.0
You can find out if full text index is being used…
No.