Hacker News new | ask | show | jobs
by Izkata 6 days ago
Development runserver has been multithreaded by default for over a decade. I think you need to go back to major version 1 to see it single-threaded by default. Maybe affected by the GIL though.
1 comments

Pretty sure it still defaults to no threading [0], and just uses the plain WSGIServer instead of the threaded mixin.

[0] https://github.com/django/django/blob/main/django/core/serve...