I am working on a django app to store user pics and photos. What is the optimal approach to store individual user media. File Sizes are no more than 5MB. The data is persistent.
The approach i have in mind is:
- On form data submission, Upload it to an FTP server using django-storages.
- Store the url and fetch it via http later for user.
How to save upload files to another server
I have seen the answers and I don't know what type of queue needs to be used.
you'd usually save the file locally and then latter upload it to some cloud service asynchronously, preferably using something like django-celery
see this answer