Mongo 数据库上的多个 GridFS 和多个文件
我想知道 Mongo 中是否可以有多个 GridFS?我之所以问这个问题是因为我正在使用 Mongo 进行视频和图像上传。问题是我希望它们是单独的集合,但我正在使用
$db ->gridFS();
它使用相同的集合。那么如何分离这两种类型并仍然使用 gridFS 呢?
同样对于图像来说,一个图像文件具有与一个ID相关联的图像的多个版本。这可以在 GridFS 中完成吗? grid->StoreFile
似乎只存储一个文件。
I am wondering it is possible to have multiple GridFS in Mongo? The reason why I am asking is because I am working on with Mongo has both video and image uploads. The problem is I want them to be separate collections but I am using
$db ->gridFS();
which uses the same collection. So how can I separate the two types and stil use gridFS?
Also for the images, an image file has multiple versions of the image associated with one ID. Can this be done in GridFS? grid->StoreFile
seems to only store one file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要为 gridfs 使用多个集合,请使用此方法以及您自己的前缀
<代码>
$collection = $db->getGridFS($prefix);
要保存多个版本的文件,我建议使用生成的文件名存储文件,并将图像 ID 和版本存储在文件元数据中。
To use multiple collections for gridfs, use this method with your own prefix
$collection = $db->getGridFS($prefix);
To save file with multiple versions, I would recommend storing file with generated filename and store image id and version in file metadata instead.