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');
分别给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的长度的大小从而给数据库查询提高速度。
自己做的小测试,希望能够给您带来收获,祝您工作愉快。
上一篇: java实现屏幕共享功能实例分析