Hacker News new | ask | show | jobs
by jb_gericke 418 days ago
So first off, don’t use Python in prod. Second off, don’t use async because of complexities in multi-threading?

A lot of the world runs just find on Python (see Django), async is mature and stable.

1 comments

> A lot of the world runs just find on Python (see Django), async is mature and stable.

I never claimed that one should not use `async`, I am only suggesting that be careful about using `async`.

In my experience, a median Go programmer is more comfortable with Go routines than a median Python programmer is with async functions. YMMV.