mysql优化之路----hash索引优化
程序员文章站
2024-03-02 13:57:22
创建表
create table `t1` (
`id` int(11) not null auto_increment,
`msg` varchar(20)...
创建表
create table `t1` ( `id` int(11) not null auto_increment, `msg` varchar(20) not null default '', `crcmsg` int(15) not null default '0', primary key (`id`) ) engine=myisam auto_increment=3 default charset=utf8
//插入数据
insert into t1 (msg) values('www.baidu.com'),('www.sina.com');
分别给msg, crcmsg 字段添加索引
alter table t1 add index msg(msg(5)); update t1 set crcmsg=crc32(msg);
alter table t1 add index crcmsg(crcmsg);
开始做测试
最后数据表结构
根据key_len的长度的大小从而给数据库查询提高速度。
自己做的小测试,希望能够给您带来收获,祝您工作愉快。
推荐阅读
-
mysql优化之路----hash索引优化
-
MySQL数据库优化详解
-
MYSQL IN 与 EXISTS 的优化示例介绍
-
mysql慢sql分析,性能优化 博客分类: mysql
-
Linux环境Mysql环境配置优化及主从配置 博客分类: SQL技术栈 mysqlredhatlinuxperformancecentos
-
mysql慢sql分析,性能优化 博客分类: mysql
-
MySQL配置文件my.cnf优化详解(mysql5.5)
-
mysql Key_buffer_size参数的优化设置
-
Mysql优化调优中两个重要参数table_cache和key_buffer
-
优化MySQL数据库中的查询语句详解