mysql 优化

通常我们要优化一下 MySQL 数据库,就进 phpMyAdmin 一个个点优化
开发PHP的,一般就在网站的程序里通过 php 实现了,但这 2 种方法都不够好
下面告诉你一个绝招,用 mysqlcheck 一条命令搞定,高效又安全

在 putty 里执行下面的语句:

   mysqlcheck -Aao --auto-repair -u你的用户名 -p你的密码

参数:

-a, --analyze 分析 [Analyze given tables]
-o, --optimize 优化 [Optimize table]
-A, --all-databases 所有的数据库 [Check all the database]
--auto-repair 自动修复 [If a checked table is corrupted, automatically fix it. Repairing will be done after all tables have been checked, if corrupted ones were found ]

你可能感兴趣的:(mysql,优化,数据库,职场,休闲)