码迷,mamicode.com
首页 > 其他好文 > 详细

get a quicker startup with -A

时间:2017-08-24 20:19:02      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:table and column names

MariaDB [(none)]> use laravel;

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

出现问题的原因是::

       我们进入mysql 时,没有使用-A参数;

       即我们使用

           mysql -uusername -ppassword -hhostname -Pport 的方式进入数据,

       而没有使用

           mysql -uusername -ppassword -hhostname -Pport  -A的方式进入数据库。

    当数据库比较庞大的时候,我们打开数据库,即use dbname时,要预读数据库信息,这样系统会出现卡顿问题,当使用-A参数时,就不预读数据库信息。

MariaDB [(none)]> use laravel -A;

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



本文出自 “跛鳖千里,贵在分享” 博客,请务必保留此出处http://chenxiaotao.blog.51cto.com/11430805/1959059

get a quicker startup with -A

标签:table and column names

原文地址:http://chenxiaotao.blog.51cto.com/11430805/1959059

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