Reputation: 489
How we can do Full Text Search in InnoDB?
Upvotes: 2
Views: 888
Reputation: 3274
The answer for this question is outdated, InnoDB supported fulltext search already in MySQL 5.6, check here for more information
Upvotes: 0
Reputation: 5428
Just an update to this thread, MySql 5.6
now supports FULLTEXT
indexes in innoDb :
http://dev.mysql.com/doc/refman/5.6/en/innodb-table-and-index.html#innodb-fulltext-index
Upvotes: 0
Reputation: 2625
Innodb doesnt support full text searching, if you really need full text searching then what you can do is have a duplicate mysiam table of the original innodb table and have your full text search done on the duplicate table
Upvotes: 1