Popular storage engines supported in MySQL are:
MyISAM
InnoDB
BerkeleyDB (BDB)
Merge
Heap (In-Memory)
MyISAM
MyISAM is the improved version of the original storage engine of MySQL, ISAM. After MySQL 3.23, MyISAM replaced ISAM as the default storage engine. ISAM was completely removed from MySQL 5 onwards. The MyISAM engine is fast and thus, preferred for web and other application environments. It is also used for data warehousing. MyISAM, however, is not transaction-safe and supports 64 keys per table with maximum key length of 1024 bytes. The size of MyISAM table depends on the host operating system. There are no limitations on data file transfer and the data files can be ported from system to system.
Read more: refulz
QR: