Superwormy
Golden Member
Say I have 3 or 4 really really often used ( for SELECTs only ) tables in MySQL, woudl it be a good idea to, whenever the MySQL server starts up, take all the data from those tables ( MyISAM ) and make 3 or 4 new HEAP tables to do the SELECTs from?
That way I don't need to worry about losing the data in case of a crash... and will I see a big benefit because HEAP tables are so much faster than MyISAM?
Thnaks!