I noticed that kbin has stalled in development recently and the ongoing problems with federation etc. made me use it even less for the past few weeks. I even spent more time on reddit than here.

Today, I decided to give my abandoned lemmy account a try and see how that goes.

As many others, I disliked the UI of lemmy, compared to kbin, but soon enough found this one https://p.lemmy.world and it’s been very smooth so far.

So yeah … hello from the other side of the fence 🍷

  • adONis@lemmy.worldOP
    link
    fedilink
    English
    arrow-up
    4
    ·
    9 months ago

    I’ve heard about mbin, but as a developer myself I don’t think PHP is the suited language for those kinds of things, where performance and resource usage are just crucial. According to ernests recent post somewhere, they’re still struggling with infrastructure issues. And I’m afraid mbin will face the same issues sooner than later.

    • Kaldo@kbin.social
      link
      fedilink
      arrow-up
      3
      ·
      9 months ago

      Isn’t modern php supposed to be pretty good and fast? And I thought the issues were on a database / federation level anyway, not related to php performance.

      • adONis@lemmy.worldOP
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        9 months ago

        No matter how modern PHP becomes every year… it just beats its previous version in performance, but the underlying architecture is still the same and cannot compete with other languages, especially when using frameworks like symfony, etc.

        For example.

        If you run a node/go/rust server and you hit the endpoint /hello which returns a simple “hello world”, they will just return that. PHP (symfony) however, has to initialize and execute the whole framework stuff, before returning a simple “hello world”

        Edit: Introducing something like Redis for caching, etc… can help in reducing the overload, but imho, it’s just a bandaid