0
它是貝蒂,如果我存儲一個集合下的所有用戶的通知:如何設計架構通知MongoDB的
{
id_: Object,
type: String, // post or message
ref_id: Number, // post id or message id
owner: Number,
read: Boolean,
created_at: Date
}
// when I get notification for a single user
db.notifications.find({"owner": user_id, "read": {$ne: true}})
如果你有一個例子,請給我一些建議或某些環節研究。
謝謝。
是的,我們應該有發送者和接收者領域 感謝您的建議兄弟:) – user3418903
什麼是首選的方式,如果我有多個外鍵? 'type:string; //或者可選的ForeignKey指向另一個表,在其中存儲可能的類型(請參閱數據庫標準化) – Xyroid