TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Why PHP Scales - A Cranky, Snarky Answer

24 pointsby t0pjalmost 17 years ago

4 comments

dfrankealmost 17 years ago
Any claim that any language that has basic control structures and access to OS facilities can't be made to scale is absurd on its face. When you say that a system scales well, you're talking about its asymptotic behavior. Using an inefficient language implementation will penalize you by at worst a constant multiple.
bprateralmost 17 years ago
Argh, font size. I must just be getting old, I thought I would complain about fonts being too tiny!
评论 #211285 未加载
ashleywalmost 17 years ago
I have never understood peoples thoughts about which languages scale better than others, because all web languages do the same thing - process data and return it to the user.<p>The only thing you need to worry about is caching and sessions, but that's not a language specific task.<p>To scale any web language, you just need to add more servers to the cluster. Its the database which is the real scaling problem.
ComputerGurualmost 17 years ago
PHP's scalability isn't the big question. It's not the thing that gives people pause when they hear there's a PHP project looking for a developer. As far as dynamic languages go, PHP scales better than most and performs pretty damn well out of the box. But it's whether or not you can be productive in PHP that's the real question.