Microservices and multitasking

Hello.

I have a question related how to create microservices with django.

That is, how to create asynchronous executions of the code with Django? My understanding is that django queues the requests and executes one after the other. How is it possible to multitask?

Creating different applications that run in parallel on the same operating system?

When you run Django in a production environment, you’re usually running it under a WSGI server such as uwsgi or gunicorn. Those servers start multiple processes, each running an individual instance of the Python runtime.