Is there any way that I can force MySQL to store specific tables in the RAM (other than using the memory storage engine)?
My database contains +200 GB in InnoDB tables (which I don't want to be stored in the RAM) and 10 tables (~100 MB) which uses the MyISAM engine.
My goal is to obtain the fastest possible acces to the MyISAM tables (if necessary I can change the storage engine of the MyISAM tables or move them to another db on the same server).
My db-server is running Linux and has 10 GB RAM.