[Django]-What is a main reason that Django webserver is blocking?

5๐Ÿ‘

โœ…

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

๐Ÿ‘คdm03514

5๐Ÿ‘

If you really need another reason on top of that suggested by dm03514, it Iโ€™d probably simply because it was easier to write. Since the dev server Iโ€™d for development only, little effort was spent in making it more complex or able to serve multiple requests. In fact, this is an explicit goal: making it any better would encourage people to use it in a production setting, for which it is not tested.

๐Ÿ‘คDaniel Roseman

Leave a comment