您好,欢迎访问一九零五行业门户网

Mysql 性能优化

1.optimize table
2.analyze table
3.尽量将列声明为not null
4.mysql只用前缀索引,避免在已有索引前缀上再建立索引,如index(a,b)上不要再建立index(a)
5.索引装入key cache
  load index into cache table1;
6.干预索引使用,提高性能:
a.提供给mysql参考,推荐mysql使用某个索引
select * from t_user use index(index_city)where name like 'a%' and city like 'b%';
b.强制mysql使用某索引
select * from t_user force index(index_city)where name like 'a%' and city like 'b%';
c.让mysql 忽略使用某索引
select * from t_user ignore index(index_city)where name like 'a%' and city like 'b%';
7.使用临时表提高查询性能
 select sql_buffer_result * from t_user;//将大结果集放到临时表中,以释放表级锁
 select sql_big_result city,count(*) from t_user group by city;//用于分组和distinct关键字,通知mysql在有必要时将结果集放入临时表,甚至在临时表内排序
8.straight_join强制表连接顺序
 select a.age,b.score from a straight_join b where...;//强制a连接b
9.查询缓存提高性能
 select sql_cache * from t_user;
 select sql_no_cache * from t_user;//不会缓存查询结果,不会到缓冲区查找,会直接执行它。
10.调整执行的优先级
 selecthigh_priority* from t_user;//优先执行
 insert delayed into,是客户端提交数据给mysql,mysql返回ok状态给客户端。而这是并不是已经将数据插入表,而是存储在内存里面等待排队。当mysql有空余时,再插入。
这样的好处是,提高插入的速度,客户端不需要等待太长时间。坏处是,不能返回自动递增的id,以及系统崩溃时,mysql还没有来得及插入数据的话,这些数据将会丢失。
insert delayed into t_user values(...);//
其它类似信息

推荐信息