So you suggest using two separate tables, one Innodb for backend INSERT/UPDATE operations and one, MyISAM, for websites.
What would be the best approach to create the MyISAM table from the InnoDB table content?
Simply using something like this?
Code:
CREATE TABLE aaa SELECT * FROM products;
are there smarter/faster methods?
What about a view?