具有Image字段的MongoDB Schema

时间:2013-04-07 23:51:46

标签: mongodb gridfs

我想在MongoDB中使用图像字段

创建如下的模式
{
    _id: {},
    camera_id: ObjectId(),
    image: {},
    hour: ts_of_hour,
    day: ts_of_day
}

我想将GridF用于Image字段。如何使用Mongodb中的Gridfs图像字段创建这样的单个集合。

1 个答案:

答案 0 :(得分:-1)

您需要的只是文档中GridFS对象的名称。您需要在应用程序逻辑中存储/检索:MongoDB不会自动为您执行此操作。以下是how to manage images with GridFS上的示例代码演示文稿。