简体   繁体   中英

Mysql FULL TEXT search Issue

I'm trying to create a FULLTEXT SEARCH of a table. Mysql returns

The used table type doesn’t support FULLTEXT indexes.

I searched over Internet and found that MyISAM is the only type of table that Mysql supports for Full-text indexes . So I've tried to change the type from InnoDb to MyISAM . Now, the problem is I've defined foreign key constraints in my tables which are supported by the InnoDb Engine.

So, I don't know how to implement FULLTEXT search on this InnoDB engine. Please suggest me how to implement FULLTEXT search on a table that contains foreign key constraints. (Or) Is any other Engine that supports FULLTEXT search on a foreign key constraint's table?

另一种实现FAST FULLTEXT搜索的方法是使用Sphinx ,我还认为MySQL 5.6支持InnoDB FULLTEXT索引。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM