views:

30

answers:

1

I have a web application written in PHP using MySQL that I would like to test to see how many users it can handle, how much activity, etc.

What method should I use to do this?

+1  A: 

apache ab might help, as can sql-bench. It is however an art in itself to write a good stress test (urls, postvalues, etc.), and highly dependent on the actual project.

Wrikken