{ from:{type:ObjectId,ref:’User’}, to:{type:ObjectId,ref:’User}, type:{type:String}, // img text emoji… content:{type:String}, created_at:{type:Date} }
如果只用这样一张表的话,数据量会非常庞大,查询起来肯定很耗时,大家一般都是怎样设计的呢?
{ from:{type:ObjectId,ref:’User’}, to:{type:ObjectId,ref:’User}, type:{type:String}, // img text emoji… content:{type:String}, created_at:{type:Date} }
如果只用这样一张表的话,数据量会非常庞大,查询起来肯定很耗时,大家一般都是怎样设计的呢?