欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql优化之路----hash索引优化

程序员文章站 2024-03-01 08:01:16
创建表 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');

mysql优化之路----hash索引优化

分别给msg, crcmsg 字段添加索引

alter table t1 add index msg(msg(5));

update t1 set crcmsg=crc32(msg);

mysql优化之路----hash索引优化

alter table t1 add index crcmsg(crcmsg);

开始做测试

mysql优化之路----hash索引优化

最后数据表结构

mysql优化之路----hash索引优化

根据key_len的长度的大小从而给数据库查询提高速度。

自己做的小测试,希望能够给您带来收获,祝您工作愉快。