我有 1 个包含 25 亿条记录(2.5 Cr.)的表,我正在尝试根据索引列获取记录数。执行相同的操作需要 115 秒。
询问
Select count(1) from table1 where column=code
Table1: table with 2 billion (2 Cr.)
code gets resultset from DB with 1 to 10k rows,
Column is indexed.
Server Details
Intel Xeon 3.10ghz
8 gb RAM
MySQL server 5.1
MySQL Connector 5.0.6
My.cnf details
Default Engine =InnoDB
Innodn_buffer_pool=4G
更新查询也需要太多时间,请建议我如何调整 mysql。