Полнотекстовый поиск в mysql по 3символам.

confguru

ExAdmin
Команда форума
Полнотекстовый поиск в mysql по 3символам.

Можно ли динамично сделать чтоб работал со словами
из 3символов? К примеру php ^-)

Или надо анализировать строку поиска и искать не
match (label,descr) against ('php')
а по like?

>>По умолчанию установлен поиск слов, содержащих не >>менее 4 символов. Правится установкой #define >>MIN_WORD_LEN 4 в исходнике ft_static.c, хотя на мой взгляд >>править это не нужно.
 

confguru

ExAdmin
Команда форума
Ага спасибо.. т.е. 4-ке есть..

The minimum and maximum length of words to be indexed is defined by the ft_min_word_len and ft_max_word_len system variables (available as of MySQL 4.0.0). See Section 5.3.3, “Server System Variables”. The default minimum value is four characters. The default maximum depends on your version of MySQL. If you change either value, you must rebuild your FULLTEXT indexes. For example, if you want three-character words to be searchable, you can set the ft_min_word_len variable by putting the following lines in an option file:

[mysqld]
ft_min_word_len=3

Then restart the server and rebuild your FULLTEXT indexes. Also note particularly the remarks regarding myisamchk in the instructions following this list.
 
Сверху