Hello.
Full-text search successfully works on my 4.1.9-max instance:
mysql> select version();
+---+
| version() |
+---+
| 4.1.9-max-log |
+---+
CREATE TABLE `ft` (
`a` text,
FULLTEXT KEY `a` (`a`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
Hi
I set ft_min_len_word = 3 and ft_stopword_file =
/etc/stopword.cnf in my.cnf file under the [mysqld]
section
I then restart the server and rebuild the indexes with
REPAIR TABLE ... QUICK
The ft_min_len_word=3 seems to work: I get the
expected results when quering for 3-letter words
Unfortuna