Two tools for quick and easy web application load testing during development
1–10 of 14 posts
Re: Two tools for quick and easy web application load testing during development
#2I usually use Apache bench:
Re: Two tools for quick and easy web application load testing during development
#3I also like Siege. A very simple tool:
https://www.joedog.org/siege-home/
Re: Two tools for quick and easy web application load testing during development
#4We use Tsung.
Re: Two tools for quick and easy web application load testing during development
#5wrk is pretty awesome for non-distributed testing. It supports lua scripting so it actually can be used to do tests that bust caches or run other custom logic.
If you need a more sophisticated product, I've used jmeter before. It is distributed, supports all kinds of protocols, scenarios, etc. If you want to stress test a checkout flow it can be good. It's kind of an ugly mess though.
Re: Two tools for quick and easy web application load testing during development
#6I like Artillery: https://artillery.io/
Re: Two tools for quick and easy web application load testing during development
#7We use loader.io, but am looking for ways to load test websockets which loader.io doesn't support
Re: Two tools for quick and easy web application load testing during development
#8Locust is really good, allows custom scripts for user behaviour, and works well spun up on multiple cloud instances http://locust.io/
Re: Two tools for quick and easy web application load testing during development
#9The only thing about these 2 tools is that they can only ran on Windows. Which can be a barrier for most developers. We run mac ubuntu and redhat everyday. Sometimes it's even hard to get a windows machine inside company.
Re: Two tools for quick and easy web application load testing during development
#10I usually use Apache bench: https://httpd.apache.org/docs/2.4/programs/ab.html
That's what I use. Simple and effective.