需要多少MongoDB集合

时间:2013-12-25 16:49:05

标签: mongodb

我刚开始使用MongoDB,所以请帮我确定实现以下功能需要多少个收集和收集字段。

enter image description here

这里我总共有五张图片及其各自的标题和说明,将由网站管理员管理。所以我需要在mongodb中保留所有图像网址,标题和描述以及pagID,因此我将需要多少个集合及其字段才能完成此任务。

1 个答案:

答案 0 :(得分:3)

了解MongoDB数据建模here

您可以仅使用one collection来表达您所说的功能。

示例文档如下:

{
    _id: ObjectId('fe67543457687798ab12'),
    url: 'www.example.com/img/qwerty.jpg',
    title: 'Image 1',
    description: 'Description 1',
    pagID: 'some ID'
}