1 Star 0 Fork 43

红星丶闪闪/三丙-高并发点赞

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
schema.sql 842 Bytes
一键复制 编辑 原始数据 按行查看 历史
baigod 提交于 2024-08-04 10:30 . Initial commit
--
-- 抖音关注:程序员三丙
-- 知识星球:https://t.zsxq.com/j9b21
--
--
-- 抖音关注:程序员三丙
--
create table v_like
(
v_id varchar(64) not null comment '视频id',
service_id varchar(64) not null comment '服务ID',
shard_key tinyint unsigned default '0' not null comment '分片KEY',
like_num int unsigned default '0' not null comment '点赞数',
create_time datetime(3) default CURRENT_TIMESTAMP(3) not null comment '创建时间',
update_time datetime(3) default CURRENT_TIMESTAMP(3) not null on update CURRENT_TIMESTAMP(3) comment '更新时间',
primary key (v_id, service_id)
);
create index idx_top
on v_like (shard_key asc, update_time desc);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/redstar119/hc-Like.git
git@gitee.com:redstar119/hc-Like.git
redstar119
hc-Like
三丙-高并发点赞
master

搜索帮助