i want to store uploaded files in mongodb as GridFsFile. Im using the doctrine 2 odm. it works fine when i read a file from disk and store it. But what i would like to achieve is to avoid storing the uploaded files anywhere on file system.

Is it possible to store the binary string directly?

link|improve this question

58% accept rate
feedback

1 Answer

According to the answer to this question, PHP always writes uploaded files to a temporary directory, and the _FILES array just points to those uploaded files.

You might consider setting PHP's upload_tmp_dir to a directory you've mounted as tmpfs or ramfs to avoid writing the files to disk. see here for a comparison of the two memory-based file systems.

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.