Sujet : Re: Does Python Need Virtual Threads? (Posting On Python-List Prohibited)
De : no.email (at) *nospam* nospam.invalid (Paul Rubin)
Groupes : comp.lang.pythonDate : 14. Jun 2025, 12:29:07
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <8734c236kc.fsf@nightsong.com>
References : 1
User-Agent : Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Lawrence D'Oliveiro <
ldo@nz.invalid> writes:
Looking at that Java spec, a “virtual thread” is just another name for
“stackful coroutine”. Because that’s what you get when you take away
implicit thread preemption and substitute explicit preemption instead.
Try using Erlang a little, It has preemptive lightweight processes and
it is great. Much better than async/await imho.