MyISAM supported features
nontransactional, non-crash-safe
doesn’t support transactions or row-level locks
support full-text indexing, compression, and spatial (GIS) functions
哪些工作适合 MyISAM 来做,相比于InnoDB效率更高?
If you need read-only data, or if your tables aren’t large and won’t be painful to repair,
Locking and concurrency
MyISAM locks entire tables, not rows. Readers obtain shared (read) locks on all tables they need to read. Writers obtain exclusive (write) locks. However, you can insert new rows into the tablewhile select queries are running against it (concurrent inserts).
网友评论