Comment on Anyone else moved from kbin to lemmy?
ad_on_is@lemmy.world 1 year agoI’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 1 year 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.
ad_on_is@lemmy.world 1 year 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”