写点什么

架构训练营模块八作业

作者:沈益飞
  • 2022 年 2 月 27 日
  • 本文字数:320 字

    阅读完需:约 1 分钟

表名:messages 存储消息

字段:

  • message_id 消息 ID

  • message_title 消息标题

  • message_queue 消息队列

  • message_delay_time 消息延迟发送时间

  • message_body 消息内容

  • user_id 用户信息

  • subject_id 消息订阅对象

  • subject_type 消息订阅对象类型

  • create_time 消息创建时间

  • update_time 消息更新时间

索引

  • 普通索引 message_queue,这个查询会比较频繁

  • 普通索引 user_id ,这个查询会比较频繁

  • 组合索引 subject_id 和 subject_type 两个字段枚举了消息订阅对象的类型

表名:messages_logs 存储日志 按照月份拆表

字段:

  • messages_log_id 消息日志 ID

  • message_id 消息 ID

  • send_time 发送时间

  • state 状态

  • fail_body 失败原因

  • create_time 消息创建时间

  • update_time 消息更新时间

索引

  • 普通索引 message_id ,这个查询会比较频繁

用户头像

沈益飞

关注

还未添加个人签名 2018.04.02 加入

还未添加个人简介

评论

发布
暂无评论
架构训练营模块八作业