Add yet more documentation about ft_min_word_len

This commit is contained in:
Hypolite Petovan 2017-05-01 21:42:00 -04:00
parent 0159e73544
commit 0747ce0e6e
1 changed files with 8 additions and 0 deletions

View File

@ -120,4 +120,12 @@ To index words smaller than 4 characters, you will have to edit your my.cnf/my.i
````
[mysqld]
ft_min_word_len = 3
````
Then restart your MySQL server.
If you already had data in your profile table, you will need to rebuild the index by executing the following query:
````
REPAIR TABLE `profile` QUICK;
````