• pec@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    Not sure about the scaling part

    I have work on a large application using perl and the readability and maintability where horrendous. The performance where surprisingly good enough (millionsn of request a day); although switching to go (direct translation without any refactoring or usage of fancy go features) yield huge gains in latency and memory usage.

    I have work with go, PHP, java, and JavaScript on large application and they all way better than perl. Not even comparable.

    • boot@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      Yeah perl really fails when it comes to maintainability. If you ever write any perl and the requirements change over time (they almost certainly will in a professional setting), you have to pretty much be willing and able to throw it away and start over or accept your fate of wasting unnecessary hours. I’d never advocate for building systems in perl, because nobody wants to come back and modify some buggy piece of code when it’s so unreasonably unreadable. If you want to write some perl for your home automation system, be my guest. Please don’t use it in a situation where I grab a bug fix ticket, open the code, and find a pile of dollar signs and ampersands staring back at me.

  • orclev@lemmyrs.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Before there was python, before there was node, there was perl. It’s old, it’s crufty, it’s a product of a bygone age, but even today if you want to do something with regular expressions and ingesting text it’s still one of the easiest options. Of course it’s highly debatable if you should ever use regex to ingest text.