Py学习  »  MongoDB

如何无限填充MongoDB模型?

nflauria • 5 年前 • 1280 次点击  

我正试图找到一种在MongoDB中无限填充的方法。我有一个posts集合,它有一个对象id的comments数组。每个注释还有一个childcomment id数组。我能够嵌套两个填充物,但是这个注释系统类似于ReDIT,因为可以有无限数量的嵌套注释。

router.get('/', (req, res) => {
  Post.find()
    .populate({
      path: 'postComments',
      populate: {
        path: 'commentComments'
      }
     })
    .sort({ date: -1 })
    .then(posts => res.json(posts))
    .catch(err => res.status(404)
      .json({ nopostsfound: 'No posts found'}));
});

我希望找到一种方法,在那里,commentcomments的填充将继续进行尽可能多的嵌套注释。任何帮助都是非常感谢的!

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/43525
 
1280 次点击  
文章 [ 2 ]  |  最新文章 5 年前
krbalaji
Reply   •   1 楼
krbalaji    6 年前
router.get('/', (req, res) => {
  Post.find()
    .populate([{
      path: 'postComments',
      populate: [{
        path: 'commentComments',
        populate: {
          path: 'childComments'
        }
      }]
     }])
    .sort({ date: -1 })
    .then(posts => res.json(posts))
    .catch(err => res.status(404)
      .json({ nopostsfound: 'No posts found'}));
});

可以填充嵌套填充的无限填充。

duskwuff
Reply   •   2 楼
duskwuff    6 年前

这是一个固有的问题数据库模式。对架构的一些更改将使您的任务更轻松。

不要在post或comment对象中存储注释id数组。当数组变得非常大,或者许多客户机需要同时更新父对象时,这将导致问题。

相反,在每个comment对象中,存储它所属的post的id,以及它所响应的comment的id(如果有的话)。然后,要加载帖子的评论,请搜索属于该帖子的每个评论并执行 topological sort 在生成的对象上。

与您所描述的模式相比,这个模式有许多主要的优点——该模式与传统的关系数据库兼容,post的所有注释都可以在一个查询中检索,新的注释可以用一个insert查询添加。