When do a select count(*), is the performance better on MyIsam table than InnoDB table?
I read on the web that MyISAM stores total number of rows in MYI file header. It's read into memory when table is opened.
InnoDB doesn't store total number of rows anywhere.
If we have InnoDB tables and also need to do a lot of count(*), is there anyway to improve the count(*) on InnoDB?