摘要:
mysql 中几个重要的系统参数 一、双1配置 重要指数 满天星 (set global innodb_flush_log_at_trx_commit=1; set global sync_binlog=1;) 说明: innodb_flush_log_at_trx_commit 控制log buf 阅读全文
摘要:
MySQL 执行计划详解 转自:https://www.cnblogs.com/yinjw/p/11864477.html 我们在查询前能否预先估计查询究竟要涉及多少行,使用那些索引、运行时间等,答案是可以的,MySQL提供相应的功能和语法来实现该功能。Server会比较所有可能方法所耗费的资源. 阅读全文