我正在开发一个社交网站。现在我正在使用 mysql 进行数据存储。现在我必须继续使用 nosql 数据库(我更喜欢 ElasticCache 或 DynamoDb(亚马逊服务))。但我对数据建模感到困惑。在 mysql 中,我有以下数据结构。
***UserMst:***
UserID
UserName
UserEMail
BirthDate
.....
***FriendMst***
FriendID (Pk)
UserID (UserID)
HisFriendID (User's friend id)
Status
***Notification table***
NotifyID (Pk)
UserID (UserID)
HisFriendID (User's friend id)
NotifyDate (Notify date)
如何为 nosql 数据库建模?有人可以帮助我吗?