Server testing PHP application

I have a PHP application that will accept image uploads and I'm expecting ~ 20,000 in about 2 days. I have no idea how much traffic my server can handle ... How would I start simulating this ahead of time to make sure it is working fine? I know Rails has systems that make testing easier, but what tools can I use to simulate loading and parallel script processing on this scale?

Thank!

+2


source to share


4 answers


Apache JMeter is one of the best load testing tools out there. I'm sure it can handle your needs.



+4


source


Another great option is to write a php script that uses cUrl to interact with the php engine multiple times, you can run multiple instances to see how it reacts.



+1


source


Take a look at Siege , which is a simple regression testing and testing utility.

+1


source


Some related posts, there are many tools out there for this. The most popular open source load testing tools are OpenSTA and JMeter. But there are others.

The Best Way to Stress a Website Open Source Voltage, Load and Performance Testing Tool

0


source







All Articles