博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 性能参数 innodb_flush_log_at_trx_commit
阅读量:6120 次
发布时间:2019-06-21

本文共 469 字,大约阅读时间需要 1 分钟。

每次innodb_flush_log_at_trx_commit 这个参数的几个值表示的意思老是记不清,现在整理下来,方便查看。

0 ---  每秒把Logbuffer的内容写到日志文件,并且Flash到磁盘。

1 ---  每次Commit的时候Flush到磁盘,这个是最安全的, 照理也是性能最差的。

2 ---  每次Commit就从Logbuffer刷到日志文件,并且每秒从往磁盘刷。

mysql> show variables like 'innodb_flush_log_at_trx_commit';+--------------------------------+-------+| Variable_name                  | Value |+--------------------------------+-------+| innodb_flush_log_at_trx_commit | 1     |+--------------------------------+-------+

默认是1

转载地址:http://bygka.baihongyu.com/

你可能感兴趣的文章
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
C++文件读写详解(ofstream,ifstream,fstream)
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>
HTML模块化:使用HTML5 Boilerplate模板
查看>>
登记申请汇总
查看>>
Google最新截屏案例详解
查看>>
2015第31周日
查看>>
在使用EF开发时候,遇到 using 语句中使用的类型必须可隐式转换为“System.IDisposable“ 这个问题。...
查看>>
Oracle 如何提交手册Cluster Table事务
查看>>