码迷,mamicode.com
首页 > 数据库 > 详细

MySQL 执行 'use databases;' 时很慢

时间:2016-09-01 18:29:02      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:


问题描述:

  就是这么个情况,登录数据库切换库时感觉很卡,需要等待几秒钟。

案例:

shell > mysql -uroot -ppassword

mysql> use databases;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed

mysql>

# 当数据库中表比较多,且单表又比较大时,执行这个 use databases 指令就会很卡 ( 也跟机器性能有很大关系 )

解决方法:

# 这时就可以按照提示,连接时加入 -A 参数

shell > mysql -A -uroot -ppassword

mysql> use databases;
Database changed

# 这样就很快了,简直快的飞起。

参数解释:

-A, --no-auto-rehash 
        No automatic rehashing. One has to use rehash to get
        table and field completion. This gives a quicker start of
        mysql and disables rehashing on reconnect.

 

MySQL 执行 'use databases;' 时很慢

标签:

原文地址:http://www.cnblogs.com/wangxiaoqiangs/p/5830548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!