2

I'm using windows operating system and xampp control panel. I want to change full text index minimum word length. Most of post explain it can be changed through mysql my.ini file. But my mysql my.ini file doesn't show any thing as "ft_min_word_len". How can I change it? Is there any other place that is exist?

Maduri
  • 249
  • 1
  • 5
  • 19

1 Answers1

2

Open this file:

Windows:

C:\\xampp\mysql\bin\my.cnf

Linux:

/etc/my.cnf

Add this: (if it does not exist in that file)

[mysqld]
ft_min_word_len = 3 // or any number you like

Restart MySQL... Done.

Also you can see it in here:

enter image description here

Shafizadeh
  • 9,960
  • 12
  • 52
  • 89