2020 study pdf.

After seeing this a couple years ago I started to be more responsible for my PHP code, writing it even with the slightest micro-optimizations possible, since more times people use my code (especially due to nature of PHP being executed in every http request), more energicity they waste because of my lazyness and more they pollute the planet. JIT was NOT included in this experiment, so the number can be much more lower.

I hope you will be responsible for your code so on too (generally I mean people using interpreted languages).

  • wvstolzing@lemmy.ml
    link
    fedilink
    arrow-up
    34
    ·
    8 months ago

    OK, but are they taking into account the energy expenditure of the programmer’s brain while writing the program? The amount of calories his/her brain has to burn in order to produce & debug the code?

    • souperk@reddthat.com
      link
      fedilink
      arrow-up
      10
      ·
      edit-2
      8 months ago

      good question, probably the transpiled code does not match the optimized js. Maybe, if they targeted the same js version as js version they are benchmarking, the results would be equivalent?

      Also, if they are using a node version with ts support, it will compile the ts before execution which means they are measuring the impact of the compiler, which can be a lot for small snippets.

  • mr47@kbin.social
    link
    fedilink
    arrow-up
    14
    ·
    8 months ago

    Quite a few unexpected results here…

    1. I’m surprised the C binary is not the smallest, and it’s outdone by Pascal, of all languages.
    2. The speed/energy difference between Java and C# (almost a factor of 2 in favor of Java).
    3. The relatively good performance of JavaScript compared to other loosely typed multi-paradigm scripting languages.
    4. The difference between C# and F#. That’s actually a good reason to question the accuracy of these tests and results.
    • words_number@programming.dev
      link
      fedilink
      arrow-up
      11
      ·
      edit-2
      8 months ago

      The JS one is not surprising at all. There’s no other loosely typed multi-paradigm scripting language where such insane shitloads of money and developer time have been spent for optimizing its execution (by some of the largest tech companies). Kinda funny considering that the language design is complete horse shit.

      Your 2nd point is really quite surprising. I also wouldn’t have thought that java would beat Go in both energy and time by that margin!

    • Tamlyn@lemmy.zip
      link
      fedilink
      arrow-up
      13
      arrow-down
      3
      ·
      8 months ago

      Without any information how this test result got achieved. It’s kind of useless. It’s like to read the headline of a paper. So sure you should question the accuracy of this image. But i would agree it’s fun to look at it

    • sim642@lemm.ee
      link
      fedilink
      arrow-up
      3
      ·
      8 months ago

      Pascal is a simpler and more limited language, so it’s not entirely surprising. It also has less and smaller standard libraries to link in.

      As to C# and F#, what’s wrong with the difference? The functional coding style of F# prefers immutable data over possibly mutable ones in C# and that requires more allocations and garbage collection.

      • mr47@kbin.social
        link
        fedilink
        arrow-up
        1
        ·
        8 months ago

        I haven’t looked into the details of the actual code, but I would expect the compiler optimizations and JIT to figure it all out and end up with very similar native code. Especially since both languages are mature and had enough time to reach such goals. But it’s quite possible my assumptions are incorrect.

  • sim642@lemm.ee
    link
    fedilink
    arrow-up
    14
    arrow-down
    2
    ·
    8 months ago

    Or you could just write your backend in JS and save a lot according to this table.

    The big inefficiency of PHP is that every request is handled in a new instance as opposed to one process running the server continuously.

    • kovalensky@lemmygrad.mlOP
      link
      fedilink
      arrow-up
      9
      ·
      edit-2
      8 months ago

      That actually depends on the type of a server.

      Common PHP-FPM for example allows for persistent PHP processes to handle multiple requests, reducing the overhead of creating a new instance for each request.

      Also then there was no stable JIT while doing this study, so probably situation has changed a lot in a better way, but writing efficient code will always be a requirement.

      • sim642@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        8 months ago

        That allows processes to be reused but the interpreter must still be set up cleanly each time and torn down. That includes things like open files, database connections and application configurations.

        • kovalensky@lemmygrad.mlOP
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          8 months ago

          Yes, you are completely right, if your code writing style is basic, all of it being solved by your application design. Not sure for open files (in contrast with disk cache of most OS), we have configurable persistent db connections, app configurations in most cases being saved in some cache (PHPBB cache is an example). Most of the time the code you wrote is the main factor of your code speed and waste coefficient. Luckily every year we get more modern PHP interpreter, if we look back at PHP 5, it was a complete disaster in the terms of performance, but I don’t say that it will be as resource-saving as compiled languages ever (there always will be some cold-start overhead), it’s pretty neat programming language, although I now consider lazy PHP developers as planet’s nature-killers now :D

  • 1984@lemmy.today
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    8 months ago

    Yes I will use an energy saving programming language, that will make everything better. /s

    • vettnerk@lemmy.ml
      link
      fedilink
      arrow-up
      5
      ·
      8 months ago

      99% of my code is in perl. My local power source is 100% hydroelectric. I therefore choose to believe that nuclear energy would result in my code quality improving.

      • palordrolap@kbin.social
        link
        fedilink
        arrow-up
        3
        ·
        8 months ago

        “Modern Perls are supposedly faster” I thought, until I checked and apparently they used a very recent Perl.

        So now my denial is along the lines of “Well they’re asking Perl to do things it doesn’t need to, like implementing merge sort and binary trees, and, and!, TIMTOWTDI! They’re probably choosing a slow way to do things too!”

        The other denial idea was: “Interpreted languages offer rapid prototyping and easier debugging, which saves energy during the development process, and that isn’t being taken into account here.”

        …but then I see the ridiculously low scores for JavaScript. I wonder if Perl (or other interpreted languages) had received the amount of scrutiny and attention that JS has had in order that browsers remain relatively fast, whether it would be any faster now.

        • vettnerk@lemmy.ml
          link
          fedilink
          arrow-up
          1
          ·
          8 months ago

          Don’t know, and to be frank I don’t feel so strongly about it either. I use perl because it’s the language I happened to become fluent in some twenty years ago, and nowadays when I want to put together a simple utility script in python I usually just say “meh, fuckit” after ten minutes and finish it in perl instead.

  • Commiunism
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    8 months ago

    Surprised to see JS so high up, I expected for it to be much closer to PHP.

  • wim@lemmy.sdf.org
    link
    fedilink
    arrow-up
    2
    ·
    8 months ago

    Odd to see the gap between C and Pascal this big. Is this a matter of lacking optimization effort for less popular languages?

    • spauldo@lemmy.ml
      link
      fedilink
      English
      arrow-up
      1
      ·
      8 months ago

      That, and they might be using Object Pascal. I don’t know (I haven’t touched Pascal in thirty years) but I would not be surprised if there’s some overhead there.

  • leaky_shower_thought@feddit.nl
    link
    fedilink
    arrow-up
    1
    ·
    8 months ago

    the amusingly sharp contrast of python in terms of memory efficiency vs time and energy makes me think its gc is working overclocked.