▲ | BugsJustFindMe 5 days ago | |||||||
I don't. Now what? I agree with the author, especially in Python. The core Python developers so lost their minds fleeing from the GIL that they forgot historical lessons about how much more ergonomic preemptive multitasking is vs cooperative. | ||||||||
▲ | smitty1e 3 days ago | parent [-] | |||||||
> so lost their minds fleeing from the GIL that they forgot historical lessons I just don't agree. `async def` gets the fact that we've departed Kansas, good Toto, right out front. Async moves the coder a step in the direction of the operating system itself. The juice is not worth the squeeze unless the project bears fruit. I hardly do enough networky stuff to make this facility useful to me, but I'm grateful to the hours poured into making it part of Python. Contra the author of The Famous Article, threads seem gnarlier still, and I would likely architect out any async parts of a system into another service and talk to it over a port. | ||||||||
|