使用 PHP 在 mongo GridFs 中创建自己的 files_id
为了更好地在分片 Mongo GridF 中分发文件,我想创建自己的 files_id。这里描述了如何在 Java 中完成此操作:
http://groups.google。 com/group/mongodb-user/msg/524bae1602770587
但是如何在 PHP 中执行此操作?我在 API 文档中找不到任何提示,我使用 storeBytes 来保存文件:
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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用“_id”键在“$extra”参数中设置它,例如:
干杯,
德里克
You should be able to just set this in the "$extra" argument with the "_id" key, something like:
cheers,
Derick