当前位置:  数据库>mysql

关于mysql innodb count(*)速度慢的解决办法

    来源: 互联网  发布时间:2014-10-07

    本文导语:  innodb引擎在统计方面和myisam是不同的,Myisam内置了一个计数器,所以在使用 select count(*) from table 的时候,直接可以从计数器中取出数据。而innodb必须全表扫描一次方能得到总的数量。要初步解决这个问题,需要做不同于myisam...

innodb引擎在统计方面和myisam是不同的,Myisam内置了一个计数器,所以在使用 select count(*) from table 的时候,直接可以从计数器中取出数据。而innodb必须全表扫描一次方能得到总的数量。要初步解决这个问题,需要做不同于myisam的一些工作:

1、使用第二索引(一般不使用主键索引),并且添加where条件,如:

代码如下:

select count(*) from product where comp_id>=0 ;
show index from product ;
id primary key
comp_id index


2、如果只需要粗略统计的话也可使用

show status from product; 来得到大约值
这种方法可在数据分页中使用!

3、使用外部计数器,比如建立一个触发器来计数或者在程序上使用缓存方式定时计数,缺陷是这些方法会额外消耗一些资源!

参考资料:

mysql高性能:http://www.mysqlperformanceblog.com/2006/12/01/count-for-innodb-tables/
mysql DBA:http://imysql.cn/2008_06_24_speedup_innodb_count

COUNT(*) for Innodb Tables

I guess note number one about MyISAM to Innodb migration is warning what Innodb is very slow in COUNT(*) queries. The part which I often however see omitted is fact it only applies to COUNT(*) queries without WHERE clause.
So if you have query like SELECT COUNT(*) FROM USER It will be much faster for MyISAM (MEMORY and some others) tables because they would simply read number of rows in the table from stored value. Innodb will however need to perform full table scan or full index scan because it does not have such counter, it also can't be solved by simple singe counter for Innodb tables as different transactions may see different number of rows in the table.
If you have query like SELECT COUNT(*) FROM IMAGE WHERE USER_ID=5 this query will be executed same way both for MyISAM and Innodb tables by performing index rage scan. This can be faster or slower both for MyISAM and Innodb depending on various conditions.
In real applications there are much more queries of second type rather than first type so it is typically not as bad problem as it may look. Most typically count of rows is needed by admin tools which may show it in table statistics, it may also be used in application stats to show something like “We have 123.345 users which have uploaded 1.344.656 images” but these are normally easy to remove.
So remember Innodb is not slow for ALL COUNT(*) queries but only for very specific case of COUNT(*) query without WHERE clause. It does not mean I would not like to see it fixed though, it is pretty annoying.

转自:http://www.sphinxsearch.org/archives/89

    
 
 

您可能感兴趣的文章:

  • MYSQL速度慢的问题 记录数据库语句
  • 解析如何加快mysql编译的速度
  • 在red hat linux 9.0上安装mysql,访问速度奇慢,已经困惑一周,恳请指点。
  • 请介绍一个支持JSP+MySQL的虚拟主机。要求稳定、速度较快。谢谢!
  • mysql中索引使用不当速度比没加索引还慢的测试
  • mysql数据库插入速度和读取速度的调整记录
  • 救命.PHP没有办法调用MYSQL!!!!
  • Can't connect to MySQL server的解决办法
  • 忘记Mysql密码的解决办法小结
  • mysql启用skip-name-resolve模式时出现Warning的处理办法
  • mysql创建函数出现1418错误的解决办法
  • 解析在MySQL里创建外键时ERROR 1005的解决办法
  • mysql 服务意外停止1067错误解决办法小结
  • MySQL中字段名和保留字冲突的解决办法
  • MySQL错误“Specified key was too long; max key length is 1000 bytes”的解决办法
  • MYSQL数据库导入数据时出现乱码的解决办法
  • 100分求救,关于 apache+mysql+php的整合办法
  • MySQL提示:The server quit without updating PID file问题的解决办法
  • mysql占用CPU过高的解决办法(添加索引)
  • MySQL中日期比较时遇到的编码问题解决办法
  • MyEclipse连接MySQL数据库报错解决办法
  • 使用distinct在mysql中查询多条不重复记录值的解决办法
  • jsp和servlet操作mysql中文乱码问题的解决办法
  • mysql中RAND()随便查询记录效率问题和解决办法分享
  • java实现插入mysql二进制文件,blob类型,遇到问题及解决办法
  • Mysql联合查询UNION和Order by同时使用报错问题的解决办法
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • mysql启动错误之mysql启动报1067错误解决方法
  • MySql报错Table mysql.plugin doesn’t exist的解决方法
  • MYSQL安装时解决要输入current root password的解决方法
  • php连接不上mysql但mysql命令行操作正常的解决方法
  • mysql修改用户密码的方法和mysql忘记密码的解决方法
  • 安装好的Redhat Linux 8.0,带Apache和php支持,安装上Mysql后,运行正常,但检测提示php不支持Mysql,如何解决?
  • mysql服务无法启动报错误1067解决方法(mysql启动错误1067 )
  • mysql解决远程不能访问的二种方法
  • MYSQL不能从远程连接的一个解决方法(s not allowed to connect to this MySQL server)
  • 如何解决连接mysql的权限问题?
  • windows7下启动mysql服务出现服务名无效的原因及解决方法
  • mysql忘记密码的解决方法
  • PHP站点提示“/var/lib/mysql/mysql.sock”不存在的解决方法
  • mysql 提示INNODB错误的解决方法
  • DOS命令行窗口mysql中文显示乱码问题解决方法
  • 解决bash: mysql: command not found 的方法
  • mysql query browser中文乱码的解决方法
  • mysql远程登录出错的解决方法
  • mysql4.0升级到mysql5(4.1),解决字符集问题
  • Mysql的longblob字段插入数据问题解决
  • mysql中如何查看最大连接数(max_connections)和修改最大连接数
  • 在 linux下输入"mysql"命令,进入mysql命令行,但出现“Can't connetc to local MySQL server thuough socket /var/lib/mysql/mysql.sock
  • Mysql查询错误:ERROR:no query specified原因
  • MySQL 重装MySQL后, mysql服务无法启动
  • php安装完成后如何添加mysql扩展
  • 为什么用linux安装盘安装了mysql后,启动mysql,提示找不到mysql.sock文件?
  • mysql中查询当前正在运行的SQL语句并找出mysql中运行慢的sql语句
  • 請教,在redhat linux7.2+mysql 中,系統提示mysql已啟動,網頁卻不能訪問mysql?
  • Myeclipse中自带Tomcat的JDBC连接池配置(mysql和mssql)
  • 求解释: useradd -g mysql mysql -d /home/mysql -s /sbin/nologin
  • MySQL Workbench的下载安装与使用教程


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3