数据表结构
CREATE TABLE comments (
id bigint(20) unsigned NOT NULL AUTO_INCREMENT,
aid bigint(20) unsigned NOT NULL DEFAULT '0',
uid bigint(20) unsigned NOT NULL DEFAULT '0',
contents text NOT NULL,
likes int(10) unsigned NOT NULL DEFAULT '0',
comments int(10) unsigned NOT NULL DEFAULT '0',
time int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY aid (aid),
KEY time (time)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
现在有 7 千万数据, 表大小 3.60 GB 索引大小 2.55 GB ;
AID 是新闻的 ID ;
UID 是评论用户;
contents 是评论内容;
随着数据越来越多表越来越大,如果分表,业务逻辑很麻烦,又达不到需求,有什么好的优化方案?
我现在想把 contents 内容单独一个表存放,就是说这个评论表 增加一个表;
CREATE TABLE comments_data (
id bigint(20) unsigned NOT NULL DEFAULT '0',
contents text NOT NULL,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
这样虽然能优化一些,但终究不是最终解决方案,不知道 V2 朋友们有没做过类似的数据结构优化;