Before I get marked as dupe of articles like:
[http://stackoverflow.com/questions/635123/what-is-a-good-tool-or-site-to-use-to-performance-test-a-web-page-site][1]
Most of the answers on pages like that indicate performance testing of the html, using firebug, YSlow and so on. Loadrunner is cited, which is good, but what I'd like is a 开发者_JAVA技巧set of tools for performance testing the php itself to identify bottlenecks in the code.
It's a LAMP setup.
So, maybe:
- Code coverage testing
- Lint for php?
- Something like valgrind for c, but for php
- any other tool to really hammer the php code and look for flaws or inefficiencies
Currently the best one I've found for it may be JMeter, but I'm only just starting to explore it.
All suggestions appreciated!
Hey, I use XDebug and KCachegrind to check out whats going on server side.
http://kcachegrind.sourceforge.net/html/Home.html
http://www.xdebug.org/
They are pretty easy to set up and have been invaluable to me in identifying bottlenecks in my code.
精彩评论