Exciting changes for python
Exciting changes for python
Posted Jul 15, 2025 23:39 UTC (Tue) by marcH (subscriber, #57642)In reply to: Exciting changes for python by Bluehorn
Parent article: Following up on the Python JIT
> We don't compute much, we just keep data organized for the user. So there is no single bottleneck, we can only optimize peaks of 7% at most from the flame graph.
If you don't "compute" much, then why is the programming language the bottleneck?
All languages are equal when waiting for storage, network, databases, user input, etc. In that case, optimizing requires re-architecturing data and caching and that's generally not language specific. Except higher level languages make it much easier, safer and faster to experiment with different designs and strategies.