Reputation: 5723
I am planning to use cloudfoundry paas service (from VMWare) for hosting my node.js application. I have seen that it has support for mongo and redis in the service layer and node.js framework. So far so good.
Now I need to store my mediafiles(images uploaded by users) to a filesystem. I have the metadata stored in Mongo.
I have been searching internet, but have not yet got good information.
Upvotes: 6
Views: 977
Reputation: 4407
Filesystem in most cloud solutions are "ephemeral", so you can not use FS. You will have to use solutions like S3/ DB for such purpose
Upvotes: 0
Reputation: 65445
You cannot do that for the following reasons:
You absolutely must solve this problem in another way.
Upvotes: 10