• @FizzyOrange
    link
    615 days ago

    That’s not really true. C# and Java are reference-based, uses GC and can be multithreaded, and are very comparable to Rust/C++/C performance. Certainly no more than twice as bad. Whereas Python is probably 50x as bad.

    The real answer is that Python developers have deliberately avoided worrying about performance when designing the language, until maybe 2 years ago. That means it has ended up being extremely dynamic and difficult to optimise, and the CPython implementation itself has also not focused on performance so it isn’t fast.

    But I agree the aim of offering C/C++ speed is never going to be met with Python syntax.

    • @[email protected]
      link
      fedilink
      214 days ago

      They can probably beat or at least match Javascript, which has been heavily optimized, but the cap is going to be something like Lua (not LuaJit) without significant, painful changes.

      If you want faster Python today, you can try numba or Cython, both solve the problem in a different way with different tradeoffs.