博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql数据库引擎调优
阅读量:6439 次
发布时间:2019-06-23

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

  hot3.png

---------------myisam----------------

• Optimizing disk storage

• Tuning your tables for performance

   ANALYZE TABLE, OPTIMIZE TABLE,REPAIR TABLE。

• Using the MyISAM utilities

myisam_ftdump 分析全文索引。

myisamchk 表性能分析。
myisamlog 日志变化分析。.
myisampack 压缩表。

• Storing a table in index order
• Compressing tables
• Defragmenting tables
• Monitoring the key cache
• Preloading key caches
• Using multiple key caches
• Other parameters to consider

 

--------------------innodb---------------

• Using the SHOW ENGINE command

• Using InnoDB monitors

• Monitoring logfiles

• Monitoring the buffer pool

• Monitoring tablespaces

• Using INFORMATION_SCHEMA tables

• Other parameters to consider:

innodb_thread_concurrency 调整并发线程0-->独立硬盘分区+cpu内核数;

innodb_fast_shutdown  减少关机时间;

innodb_lock_wait_timeout 默认锁超时;

批量导入数据时候: AUTOCOMMIT;暂时停止外键和唯一值限制。

转载于:https://my.oschina.net/cshell/blog/64141

你可能感兴趣的文章
java知识大全积累篇
查看>>
善于总结所做所学的内容
查看>>
Lua-简洁、轻量、可扩展的脚本语言
查看>>
org.hibernate.MappingException: entity class not found hbm可以解析,但是实体类不能解析...
查看>>
Android -- Drag&&Drop
查看>>
Extjs4:改变Grid单元格背景色(转载)
查看>>
中医无绝症[转载]
查看>>
ZendStudio10.6.1如何安装最新的集成svn小工具?
查看>>
PHP中$_SERVER的详细参数与说明
查看>>
jquery easyui datagrid mvc server端分页排序筛选的实现
查看>>
去了大公司就一定能学到很牛的技术么?
查看>>
methanol 模块化的可定制的网页爬虫软件,主要的优点是速度快。
查看>>
IOS开发之表视图(UITableView)
查看>>
Notepad++去除代码行号的几种方法
查看>>
polay定理总结
查看>>
CodeForces 396C 树状数组 + DFS
查看>>
[sharepoint]rest api文档库文件上传,下载,拷贝,剪切,删除文件,创建文件夹,修改文件夹属性,删除文件夹,获取文档列表...
查看>>
远程桌面退出全屏/不能全屏/全屏切换的技巧
查看>>
【Java】Float计算不准确
查看>>
mybatis在xml文件中处理大于号小于号的方法
查看>>