I have a form on my site that uploads a file. Currently i upload the file to amazon S3 before sending a response back to the user. Is there a way in Django to send a “Success” response to the user immediately after the file is saved on my local server, but before I i start saving it to s3?
Share
You should use a distributed task queue.
Since you are using AWS already, you might want to consider their alternative: Amazon SQS.