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.

PHP Performance by Rasmus Lerdorf

41 pointsby ahmicroabout 14 years ago

3 comments

vmindabout 14 years ago
The slides (<a href="http://talks.php.net/show/dojo/1" rel="nofollow">http://talks.php.net/show/dojo/1</a>) seem good as a quick overview of the talk. The take home messages generally being: make sure you know where your application is spending its time using strace, and to track superfluous overhead (such as configurable fallbacks that you can hardcode in a deployed application). Also: HipHop is not a magic bullet. Without heavily computational application code it gives only marginal improvements over PHP with APC, at least in these tests.
评论 #2442654 未加载
jamaicahestabout 14 years ago
He optimizes stuff he thinks is expensive and then runs the profiler to see what's expensive and then ends up saying "If you don't know what things cost, you are lost." Seems someone needs to take their own advice. Based on the slides, did not have the patience to wait 10 minutes for the vimeo video to load.
jolanabout 14 years ago
Just about the same talk was discussed before:<p><a href="http://news.ycombinator.com/item?id=1566546" rel="nofollow">http://news.ycombinator.com/item?id=1566546</a>