手机
当前位置:查字典教程网 >编程开发 >mysql数据库 >mysql myisam 优化设置设置
mysql myisam 优化设置设置
摘要:myisam_max_[extra]_sort_file_size足够大delay_key_write减少io,提高写入性能bulk_ins...

myisam_max_[extra]_sort_file_size足够大

delay_key_write减少io,提高写入性能

bulk_insert_buffer_size

concurrent_insert 设置为2

read_rnd_buffer_size random scan 使用

read_buffer_size 顺序扫描表使用

key cache 的三种方式

key cache 预加载

SET GLOBAL hot_cache.key_buffer_size=16m

SET BLOBAL cold_cache.key_buffer_size=16m

CACHE INDEX example.top_message IN hot_cache

CACHE INDEX example.event IN cold_cache

LOAD INDEX INTO CACHE example.top_message,example.event IGNORE LEAVES

LOAD INDEX INTO CACHE example.user IGNORE LEAVERS,expamle.groups

MySQL 优化设置步骤

【mysql myisam 优化设置设置】相关文章:

发现mysql一个用法,比较有用

使用mysql的disctinct group by查询不重复记录

mysql主从同步快速设置方法

Mysql默认设置的危险性分析第1/2页

mysql 分页优化解析

mysql 海量数据的存储和访问解决方案

mysql 编码设置命令

mysql 优化日记

mysql开启远程登录功能

mysql cmd常用命令

精品推荐
分类导航