Reputation: 15737
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?
Upvotes: 1
Views: 290
Reputation: 70540
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.
Upvotes: 3