Vista 上的 wamp mysql:无法解释的缓慢查询
我在vista上,在WAMP下,MySQL的性能让我失望。
C:\Users\dev>mysql -uroot 欢迎使用 MySQL 监视器。 命令以 ; 结尾或\g。你的MySQL 连接 ID 为 1 服务器版本: 5.1.41-community-log MySQL 社区服务器(GPL)
版权所有 (c) 2000、2010,Oracle 和/或其附属公司。版权所有 保留。
Oracle 是以下公司的注册商标 Oracle 公司和/或其 附属机构。其他名称可能是 其各自所有者的商标。
输入“帮助”;或“\h”寻求帮助。类型 '\c' 清除当前输入 声明。
mysql>使用 crm 数据库已更改
mysql>从参与中选择 count(1);
<前>+----------+ |计数(1) | +----------+ | 406015 | +----------+一组 1 行(2 分 33.11 秒)
我确信问题出在 vista 而不是 wamp。 我读到一些类似的问题是由于 UAC 激活造成的,因此我们需要停用它。
我使用的笔记本电脑不是我自己的,所以我正在寻找替代解决方案。
如果你有的话,请让我们听听。
I am on vista, under WAMP, and the MySQL performance is disappointing me.
C:\Users\dev>mysql -uroot
Welcome to the MySQL monitor.
Commands end with ; or \g. Your MySQL
connection id is 1 Server version:
5.1.41-community-log MySQL Community Server (GPL)Copyright (c) 2000, 2010, Oracle
and/or its affiliates. All rights
reserved.Oracle is a registered trademark of
Oracle Corporation and/or its
affiliates. Other names may be
trademarks of their respective owners.Type 'help;' or '\h' for help. Type
'\c' to clear the current input
statement.mysql> use crm Database changed
mysql> select count(1) from participations;
+----------+ | count(1) | +----------+ | 406015 | +----------+1 row in set (2 min 33.11 sec)
I am sure the problem resides in vista and not wamp.
I read that some similar issues are dues to UAC activation, so we need to deactivate it.
I am on a laptop that I do not own, so I am looking for an alternative solution.
If you have one, please let us hear it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注释 drivers\etc\hosts 文件中的行:
可以很好地提高性能。
但临时表复制机制也需要时间。
我想,这是另一个问题
commenting the line in the drivers\etc\hosts file:
improve very well the performance.
But the temporary table copy mechanism take time too.
I think, this is another problem
我在 Windows 8 Core I7 笔记本电脑上遇到了同样的问题。
当我将主机从 localhost 更改为 127.0.0.1 时,速度显着加快。
I had the same problem on a Windows 8 Core I7 laptop.
When I changed the host from localhost to 127.0.0.1 things speeded up dramatically.