开发者

mysql innodb vs MyISAM [duplicate]

开发者 https://www.devze.com 2023-02-20 23:33 出处:网络
This question alr开发者_开发问答eady has answers here: Closed 11 years ago. Possible Duplicate: MyISAM versus InnoDB
This question alr开发者_开发问答eady has answers here: Closed 11 years ago.

Possible Duplicate:

MyISAM versus InnoDB

Hi there,

In MySQL, which storage engine is faster? InnoDB or MyISAM? Can any one list their +/- here? not detailed list but in short.

Thanks.


I'm not sure you can get a definitive answer. I think MyISAM is faster for many simple queries, however, it only has table-level locks. InnoDB, on the other-hand uses row-locking, which could mean things are faster when you are running multiple large queries concurrently.

0

精彩评论

暂无评论...
验证码 换一张
取 消