Mongo 数据库上的多个 GridFS 和多个文件

发布于 2024-12-24 03:12:29 字数 281 浏览 1 评论 0原文

我想知道 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 技术交流群。

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

发布评论

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

评论(1

初见你 2024-12-31 03:12:29
  • 要为 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.

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