码迷,mamicode.com
首页 > 数据库 > 详细

mysql hash索引优化

时间:2014-08-20 11:59:42      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:blog   http   数据   ar   2014   工作   log   ad   

创建表

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‘);

bubuko.com,布布扣

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

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

update t1 set crcmsg=crc32(msg);

bubuko.com,布布扣

alter table t1 add index crcmsg(crcmsg);

开始做测试

bubuko.com,布布扣

最后数据表结构

bubuko.com,布布扣

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

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

 

mysql hash索引优化,布布扣,bubuko.com

mysql hash索引优化

标签:blog   http   数据   ar   2014   工作   log   ad   

原文地址:http://www.cnblogs.com/webkaifazhe/p/3924014.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!