Earlier quoted context omitted.
And it is severely underrated. Even though performance gain is aevrate around 4x-20x. Used in production and memory usage is also about 1/6th of CPython. Can get 10x perfromance easily in many cases.
> Used in production and memory usage is also about 1/6th of CPython I thought it would have higher memory usage? (based only on reading)
Python-based compiler achieves orders-of-magnitude speedups
191–193 of 193 posts
Re: Python-based compiler achieves orders-of-magnitude speedups
#192Earlier quoted context omitted.
For sure, but django for instance is really good at turning something that ought to be one query into N+1 queries.
how do you deal with this?
Re: Python-based compiler achieves orders-of-magnitude speedups
#193Earlier quoted context omitted.
What is this talk about "rescuing" Python performance? Python does not need to be rescued. Its fast enough. For 90% of applications, you are kidding yourself if you need more speed. These are enhancements on Python, where you want to run stuff even faster on par with other languages.
Python is currently running on 100,000s of CPUs right now. There's an environmental cost to that. Moreover, people have huge python apps that they can't just rewrite and python just isn't fast enough. This has happened so many times. So many man hours have been spent optimizing python code, that we have over a dozen different implementations in just this thread alone and it doesn't include 3 that I know of. Python's…
Execution speed is more than execution speed - you need to be correct, and being fast enough is quality; faster may be wasteful.