Search code examples
pythondjangowebservertornadoblocking

What is a main reason that Django webserver is blocking?


Why is the Django webserver blocking, not non-blocking like Tornado? Was there a reason to design the webserver in this way?


Solution

  • I believe It is single threaded and blocking so it is easy to debug. if you put a debugger in it will completely halt the server