根据用户会话

时间:2015-12-20 11:59:01

标签: node.js mongodb mongoose nosql

我的馆藏有一个关键的呼叫会话是否合适,以便我可以识别这些数据属于谁?例如,我有几套存储书籍的数据。如何在nosql DB(MongoDB)中识别出一组数据属于哪个用户?我知道在mysql中我们只是使用Foreign Key设计表,但我怎么能在nosql中做呢?

我能想到的是我会得到这些数据:

{
bookId:1,
  bookName: "soemthing",
    userId:1
}

{
  another_collection_key:1,
  another_value: "soemthing",
   userId:1
}

每组数据都有userId,对吗?

0 个答案:

没有答案