Hacker News new | ask | show | jobs
by lisasays 1103 days ago
Doesn't look like something I'd want to have to debug in a pinch, that's for sure.

Is there anything else in Python-land you would go with for the use case you have in mind? Or does pretty much all the async stuff turn on you like this, at some point or another?

1 comments

If you need to buy into the async ecosystem for some special reason my recomendation is to:

- pick a mature ASGI server

- pick a framework and libraries that have been designed from the start with async in mind. Be suspicious of libraries that support sync and async APIs without clear guard rails between the too implementations

- avoid setups where you have multiple event loops in a single process.

Thanks - so is there anything in the Python space that ticks those boxes, in your view?