development server

Hi Team,
The django development server is single threaded or multithreaded? If its multithreaded how many worker threads it can run concurrently and from where i can see the server configuration details.

Hello @suraj-ora-2020

The django development server is single threaded or multithreaded?

Refer to the runserver documentation

If its multithreaded how many worker threads it can run concurrently and from where i can see the server configuration details.

The runserver command relies on socketserver.ThreadingMixIn which defaults to creating one thread per request.