Hi,
I need to implement something like a full text search on a couple if index's in a large products table, using innodb, MyISAM is not an option due to its lack of transactions and relationship support.
I can think of a couple of ways of doing this, plugin, stored procedure, search table with keys and copied index's in MyIsam format.
How have you acheived this in the past, which is the best way (including any I have not mentioned) and why?
The plugin sounds expensive, the stored procedure sounds slow, and the search table sounds like and admin nightmare.
Love to hear your views.