2

I am using Full-Text search in MySQL. But when search it with Stopword result is empty.

What I want is operation like what we use with LIKE. Mean that, it do with all word. After I used Full-Text search, I think that it more powerful than LIKE, it can use with index FULLTEXT, with multiple field.

But, when search criteria in AGAINST is in list of Stopwords the result is EMPTY.

How can I use Full-Text search in MySQL that filter although word in Stopword? Or Others way that I can use with search algorithm?

Leniel Maccaferri
  • 100,159
  • 46
  • 371
  • 480
KH-DP
  • 43
  • 2
  • 8

1 Answers1

0

The only way I can think of is to mess with the ft_stopword_file system variable. Notice in particular:

Setting this variable to the empty string ('') disables stopword filtering

Unfortunately, this setting cannot be changed on the fly, mostly because fulltext indexes must be rebuilt after changing it.

RandomSeed
  • 29,301
  • 6
  • 52
  • 87