Hello all,
I've a table that stores forum messages. The message column uses InnoDB which, as far as I understand, does not support FULLTEXT. I would like to add a search feature to the forum and I'm wondering if I should convert the InnoDB engine to MyISAM to take advantage of its FULLTEXT capability.
Another option I'm thinking of is to create another table that (sort of) mirrors the forum table, but which uses MyISAM. With this option, I can retain the original InnoDB forum table as I feel it's important to have Rollback capability.
What is the best approach I should take?