简体   繁体   English

“ MYISAM”数据库存储引擎和“ ISAM”索引之间的区别

[英]differences between “MYISAM” database storage engine and “ISAM” index

what is the differences between "MYISAM" database storage engine and "ISAM" index? “ MYISAM”数据库存储引擎和“ ISAM”索引之间有什么区别? What is the relation between these two concepts? 这两个概念之间有什么关系? any reading resources? 有阅读资源吗? TNX. TNX。

Well, the main difference is in the way they store data. 好吧,主要区别在于它们存储数据的方式。 MyISAM table storage stores its data in machine independant format, placing the low byte first which means if necessary, you could copy them to tables on a different machine. MyISAM表存储以与计算机无关的格式存储其数据,将低字节放在首位,这意味着如有必要,您可以将它们复制到另一台计算机上的表中。 There are a few differences, apart from that, one of them is the ability to index TEXT and BLOB type columns, as well as index columns that contain NULL values. 除此以外,还有一些区别,其中之一是索引TEXT和BLOB类型的列以及包含NULL值的索引列的能力。 With MyISAM, you can work with larger files than with ISAM. 与MyISAM相比,使用MyISAM可以处理更大的文件。 It has a better AUTO_INCREMENT handling, and a better table integrity check. 它具有更好的AUTO_INCREMENT处理能力和更好的表完整性检查。

MySQL - The MyISAM Storage Engine MySQL-MyISAM存储引擎

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 MySql - 将InnoDB转换为数据库的MyISAM存储引擎 - MySql - Convert InnoDB to MyISAM Storage Engine of Database MySQL 5.7中MyISAM和InnoDB存储引擎之间的当前差异是什么? - What are the current differences between MyISAM and InnoDB storage engines specifically in MySQL 5.7? Openfire-MySQL存储引擎:InnoDB还是MyISAM? - Openfire - MySQL storage engine: InnoDB or MyISAM? mysql myisam存储引擎中未使用的数据 - unused data in mysql myisam storage engine 当存储引擎是 MyISAM 时如何调整 Mysql - how to tune Mysql when storage engine is MyISAM 将MySQL数据库的存储引擎从InnoDB转换为MyISAM并返回(特定于Drupal 7)有什么后果? - What are the consequences of converting the storage engine of a MySQL database from InnoDB to MyISAM and back (Drupal 7 specific)? 未知变量'default-storage-engine = myisam' - unknown variable 'default-storage-engine=myisam' 当默认存储引擎数据库是MyIsam时,InnoDB引擎的表是否会被破坏? - Do tables with InnoDB engines can be corrupted when the default storage engine database is MyIsam? 无法将存储引擎更改为myisam,未知存储引擎“ InnoDB” - Can't change storage engine to myisam, unknown storage engine 'InnoDB' 澄清MySQL数据库中InnoDB引擎中行级锁与MyISAM引擎中表级锁之间的区别 - Clarifying the difference between row-level lock in InnoDB engine and table-level lock in MyISAM engine in MySQL database
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM