在mongodb中存储关系数据

发布于 2024-10-04 09:50:28 字数 391 浏览 5 评论 0原文

假设我们想在 mongodb 中实现 2 个用户之间的以下关系。

但是您还想存储一些有关关系的属性(例如创建时间或引用时间)

在传统关系模型中,您将有一个存储这些属性的关系表(由 2 个用户 ID 索引)

您会如何做在 Mongodb 中?

如果在User表中定义关系,很简单,但我不确定属性数据会去哪里

class User
  references_many :follows, :inverse_of => :followers ,:class_name=>"User"
  references_many :followers,  :inverse_of => :follows ,:class_name=>"User"

Say we want to implement a following relationship in mongodb, between 2 users.

But you also want to store some attribute about the relationship (like time created, or referred by)

In a traditional relationship model, you would have a relationship table where these attributes are stored (indexed by the 2 user ids)

How would you do so in Mongodb?

If you define the relationship in the User table, it is simple, but i am not sure where the attribute data will go

class User
  references_many :follows, :inverse_of => :followers ,:class_name=>"User"
  references_many :followers,  :inverse_of => :follows ,:class_name=>"User"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心奴独伤 2024-10-11 09:50:28

您可以将用户 ID 作为数组存储在用户模型中。例如

class User
  ...
  key :follower_ids, Array, :typecast => 'ObjectId'
  many :followers, :in => :follower_ids

You would store the User Ids inside the User model as an array. e.g

class User
  ...
  key :follower_ids, Array, :typecast => 'ObjectId'
  many :followers, :in => :follower_ids
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文