Difference Between InnoDB and MyISAM
The big difference between MySQL Table Type MyISAM and InnoDB is that InnoDB supports transaction InnoDB supports some newer features: Transactions, row-level locking, foreign keys InnoDB is for high volume, high performance Most people us
- The big difference between MySQL Table Type MyISAM and InnoDB is that InnoDB supports transaction
- InnoDB supports some newer features: Transactions, row-level locking, foreign keys
- InnoDB is for high volume, high performance
Most people use MyISAM if they need speed and InnoDB for data integrity. You can use more than one or any combination of these table types in your database. Remember to asses the needs of your application before building it. Even though MyISAM is faster than InnoDB in the MySQL world, InnoDB is fast compared to any database engine.With InnoDB you get transactions, speed and integrity three features not usually used in the same sentence.
InnoDB
?has been designed for maximum performance when processing large data volumes. Its CPU efficiency is probably not matched by any other disk-based relational database engine.
Fully integrated with MySQL Server, the?InnoDB
?storage engine maintains its own buffer pool for caching data and indexes in main memory.?InnoDB
?stores its tables and indexes in a tablespace, which may consist of several files (or raw disk partitions). This is different from, for example,?MyISAM
?tables where each table is stored using separate files.?InnoDB
?tables can be of any size even on operating systems where file size is limited to 2GB.
So, what do you think about those engines?? Please feel free to discuss it.
For more information visit?http://dev.mysql.com/
原文地址:Difference Between InnoDB and MyISAM, 感谢原作者分享。
上一篇: ps下载的模版怎么改字
推荐阅读
-
MySQL存储引擎中MyISAM和InnoDB区别详解
-
MySQL两种表存储结构MyISAM和InnoDB的性能比较测试
-
重新学习Mysql数据库7:详解MyIsam与InnoDB引擎的锁实现
-
关于Mysql存储引擎中InnoDB与Myisam的主要区别介绍
-
MySQL存储引擎以及MyISAM与InnoDB的区别详解
-
MyIsam与InnoDB的区别及如何选择使用?
-
mysql 中InnoDB和MyISAM的区别分析小结
-
MyISAM和InnoDB的主要区别和应用场景
-
What is the difference between List super T> and List extends T> ?
-
MySQL两种表存储结构MyISAM和InnoDB的性能比较测试