what is the underlying infrastructure Django uses to handle its requests?
did it use thread, can someone give some reference on this ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Django is not a web server. It is a web framework. The behavior of how it is being run as an application is dependant on your method for serving it.
It could be threaded requests. It could be processes. It could even be async.
Serving Files
Wsgi is the most common way to serve django right now, so really you should just investigate the configuration options of different wsgi implementations.