Write on InnoDB read from MyIsam
I'm working on a project that requires lots of database inserts. I also need to be able to use something like full-text-search to retrieve the data.
Is is possible to use 2 tables, with the same exact data, oen MyIsam and one InnoDb to achieve this effect?
Write on the InnoDb, and 开发者_JAVA百科somehow read off of the MyIsam?
Yes, use replication. On the "master" server use InnoDB. On the slave, change the table type to MyISAM and add the full text index. You won't have to do anything in code except insert and select from the proper servers.
Yes, write to both tables when writing and read from the MyISAM table when searching.
There's no way to automatically write to both tables I think, it has to be done in your application code.
精彩评论