I have a table (MySQL 5.1, InnoDB) with about 3M rows, 98% of them consist of one word only. If I am running a query using LIKE %searchterm%
, it is much too slow.
As there are SELECT
queries only for this table, I was thinking of converting it to MyISAM (as InnoDB does not yet, or only for 5.6+ version, support FULLTEXT
).
However, I was wondering if this would really speed up the query, as from as far as I know a FULLTEXT-index is a table with split-up words ("Hello sunny day" -> "hello", "sunny", "day"), so if there are only one-words per column, would it make any sense?
Would it speed up queries if I would put a normal Index on this text-column?
Thank you in advance for your help!