[Django]-Using Twisted for asynchronous file uploads from Django app

1👍

Why would you want to deploy later on Apache? Twisted is rad. I would do (b) until someone presented specific, compelling reasons not to. Then I would do (a). Fortunately, your application code looks the same either way. blockingCallFromThread works fine whether Twisted is your WSGI container or not – either way, you’re just dealing with running code in a separate thread than the reactor is running in.

Leave a comment