Commit 283c8fdb authored by jackfrued's avatar jackfrued

更新了部分文档

parent 8c75922e
This diff is collapsed.
...@@ -496,6 +496,19 @@ ...@@ -496,6 +496,19 @@
1. 数据库性能调优 1. 数据库性能调优
- 软硬件优化 - 软硬件优化
- SQL优化 - SQL优化
- 通过show status了解SQL的执行频率。
- 通过慢查询日志或show processlist定位低效率SQL。
- 通过EXPLAIN分析低效率SQL的执行计划。
- 通过show profile分析SQL。
- 合理的使用索引。
- 定期检查和优化表。
- 优化insert操作。
- 优化排序操作。
- 优化分组操作。
- 优化OR条件操作。
- 优化分页操作。
- 架构优化 - 架构优化
- 主从复制,读写分离
- 集群架构
2. 代码性能调优 2. 代码性能调优
3. 云存储和CDN加速 3. 云存储和CDN加速
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment