Sujet : Re: Does Python Need Virtual Threads? (Posting On Python-List Prohibited)
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.lang.pythonDate : 15. Jun 2025, 00:10:55
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <102kvhu$fjtb$1@dont-email.me>
References : 1 2
User-Agent : Pan/0.162 (Pokrosvk)
On Sat, 14 Jun 2025 04:29:07 -0700, Paul Rubin wrote:
Try using Erlang a little, It has preemptive lightweight processes and
it is great. Much better than async/await imho.
Those are called “threads”. Python already has those, and the ongoing
“noGIL” project will make them even more useful.
There’s a reason why the old coroutine concept was brought back (albeit in
this new “stackless” guise): because threads are not the best answer to
everything.