What are the advantages of MyISAM over InnoDB?
MyISAM follows a conservative approach to disk space management and stores each MyISAM table in a separate file, which can be further compressed if required. On the other hand, InnoDB stores the tables in the tablespace. Its further optimization is difficult. The advantages of MyISAM over InnoDB include: Simplicity: MyISAM is simpler to design and … Read more