Embed Notice
HTML Code
Corresponding Notice
- Embed this notice
pwm (pwm@darkdork.dev)'s status on Tuesday, 18-Mar-2025 20:38:23 JST pwm
@i The GIL is being done away with in an upcoming release, but we'll see when that actually happens (you can currently compile it with it off).
My implementation is a separate process with its own worker threads. The intended use here is long running i/o bound tasks, which threads in python are not bad at since they can switch contexts while something else is blocking.