2

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 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!

2
  • 1
    Not a performance testing tool but a list of code benchmarks - phpbench.com Commented Nov 30, 2010 at 11:49
  • that was really interesting - I love small little tweaks like that which make a difference. Very nice read, thanks! Commented Dec 3, 2010 at 15:52

1 Answer 1

4

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.

Sign up to request clarification or add additional context in comments.

1 Comment

This is a good way to do it. Also, WinCacheGrind is a good alternative to KCacheGrind on Windows.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.