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

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.