11 Comments
Aug 29, 2023Liked by Bite Code!

Great article.

I look forward to reading your Django/Flask take. I have long found that after a Flask project grows just a little bit, I wish I'd started with Django, as I like Django's coherence across the stack and find it frustrating to piece together a Flask application from various extensions and libraries.

Expand full comment

Good article. I find myself mostly agreeing with it. I inherited some code written with asyncio and immediately refactored it out. After losing some performance I introduced some ThreadPoolExecutors and gained most of it back. The simplified codebase was then much easier to work with and understand that I was able to make other performance changes and exceed original performance.

I do like Golang's concurrency model. I like how you can write a single function and invoke it either synchronously or asynchronously... and doing so is a matter of either calling `foo()` or `go foo()`. In Python functions can be async or not, but they can't be both... and trying to synchronously call an async function and get the result back is probably like 5 lines of code.

Expand full comment
Aug 23, 2023·edited Aug 23, 2023

I think you jumped to this conclusion too quickly:

> In fact, I would dare to say that the vast majority of developers are not working on problems where network performance is an issue that hasn't be solved in a better way. At least at their scale.

async io is not about how fast can particular task finish there, but how many requests can you serve using the same hardware. If your threads are blocking while waiting for IO to finish you cannot handle any more requests in the same time

Expand full comment

Cool, nice article. I always found the whole "async" overhyped since the day it came out. It was always "This is an awesome library that will save you a lot of time" followed by a lot of toy examples I just knew would never scale.

And speaking of hype-- FastApi. Never understand the hype around it. Still not sure why I'd use it over Flask or Django with a good REST app.

Regards your comment about beginners should start with Django-- would love to hear more!

Expand full comment

What about the move to remove the GIL in 3.13? I am excited and hopeful about being able to move away from all of this async code and towards that. Async seems even more confusing than threads.

Expand full comment

Another good piece of writing. This is a nice summary of the async ecosystem. 🥳

When I need async stuff, I prefer to use anyio, and when web si involved I use Django-ninja-extras (it is Django-ninja with some nice extras)

Expand full comment