I know that Lemmy is open source and it can only get better from here on out, but I do wonder if any experts can weigh in whether the foundation is well written? Or are we building on top of 4 years worth of tech debt?

  • @sosodev@lemmy.world
    link
    fedilink
    11 year ago

    You can easily scale a monolith. You typically horizontally replicate any web server (monolith or not) to handle whatever traffic you’re getting. It shouldn’t really matter what type of traffic it is. Plenty of the world’s biggest websites run monoliths in production. You know how people used to say “rails doesn’t scale”? Well they were wrong because Rails monoliths are behind some huge companies like GitHub and Shopify.

    The lemmy backend is also quite lightweight and parallel so it’s cheap and effective to replicate.

    In my professional experience microservices are usually a dumpster fire from both the dev perspective and an ops perspective (I’m a Site Reliability Engineer).

    • @myersguyA
      link
      21 year ago

      This isn’t really contradictory to what I said. I only wished to express that the two don’t scale exactly the same (in terms of execution)