▲ | baq 2 days ago | ||||||||||||||||
async, parallelism, concurrency, why not all three? JS, the canonical async (at least today) language, has had neither parallelism nor concurrency primitives for a good decade or so after its inception. I personally blame low async adoption in Python on 1) general reduction in its popularity vs Typescript+node, which is driven by the desire to have a single stack on the frontend and backend, not by bad or good async implementations in Python (see also: Rails, once the poster child of the Web, now nearly forgotten) 2) lack of good async stdlib. parallelism and concurrency are distant thirds. | |||||||||||||||||
▲ | dragonwriter 2 days ago | parent [-] | ||||||||||||||||
> async, parallelism, concurrency, why not all three? async is a concurrency mechanism. | |||||||||||||||||
|