How to get MySQL to create a FULLTEXT index of words with 1, 2, and 3 letters?
Because in my table, many important words contain three-letter words like "PHP", "ASP", etc. And I just can't look for these lines using โMATCH (...) AGAINST (...). I don't want to useโ LIKE โbecause I want to improve performance when doing a search.
Any method to change this MySQL behavior?
source share