DEV Community

Discussion on: Can Django be asynchronous?

Collapse
 
gwutama profile image
Galuh Utama • Edited

Good article. I haven’t got the time to try my hands on Django 3.0.

Python has support for true multithreading, though. Just like you said, with asyncio and also threading modules. OK there’s limitations with green threads and so on. Applications written in Java won’t automatically be multithreaded unless you spawn threads within the process. JavaScript and nodejs in general, AFAIK, is on the other hand don’t have support for multithreading.