引擎
mysaim
MySQL 数据库 默认引擎
不支持事务 查询速度更快一些 只支持 表锁create table t1(id int) engine = myisam
innodb
支持事务
支持行锁 加 表锁create table t1(id int) engine = innodb
配置文件中指定
/etc/my.cnf[mysqld]default-storage-engine=INNODBinnodb_file_per_table=1
本文共 291 字,大约阅读时间需要 1 分钟。
MySQL 数据库 默认引擎
不支持事务 查询速度更快一些 只支持 表锁create table t1(id int) engine = myisam
支持事务
支持行锁 加 表锁create table t1(id int) engine = innodb
/etc/my.cnf[mysqld]default-storage-engine=INNODBinnodb_file_per_table=1
转载于:https://www.cnblogs.com/shijieli/p/10344352.html