使用 PHP 在 mongo GridFs 中创建自己的 files_id

发布于 2024-12-28 02:35:08 字数 457 浏览 0 评论 0原文

为了更好地在分片 Mongo GridF 中分发文件,我想创建自己的 files_id。这里描述了如何在 Java 中完成此操作:

http://groups.google。 com/group/mongodb-user/msg/524bae1602770587

但是如何在 PHP 中执行此操作?我在 API 文档中找不到任何提示,我使用 storeBytes 来保存文件:

http ://www.php.net/manual/en/mongogridfs.storebytes.php

for a better distribution of files in a sharded Mongo GridFs I'd like to create my own files_id. How this can be done in Java is described here:

http://groups.google.com/group/mongodb-user/msg/524bae1602770587

But how to do this in PHP? I could find no hint in the API documentation, I use storeBytes for saving the files:

http://www.php.net/manual/en/mongogridfs.storebytes.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

2025-01-04 02:35:08

您应该能够使用“_id”键在“$extra”参数中设置它,例如:

$m = new Mongo;
$db = $m->phpunit;
$grid = $db->GetGridFS();
$grid->storeBytes("testing", array("_id" => "MYID", "filename" => "test.txt"));

干杯,
德里克

You should be able to just set this in the "$extra" argument with the "_id" key, something like:

$m = new Mongo;
$db = $m->phpunit;
$grid = $db->GetGridFS();
$grid->storeBytes("testing", array("_id" => "MYID", "filename" => "test.txt"));

cheers,
Derick

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