Let's say CPython can gain a JIT or get rid of the GIL, but not both. Which would you want to have more?
JIT
51%
No GIL
49%
Poll ended at .
@brettcannon I run network services at (medium) scale, if the gil was gone I'd still be running asyncio. A good jit would do wonders for latency and cost, and allow more use cases (could do more data processing within a req resp cycle). nogil would unlock a little efficiency (run several asyncio threads while sharing the interpreter and some resources like connection pools, I guess?) but nothing too revolutionary, at the cost of significant complexity