2

Are there any tools that would enable me to load-test my server and tell me how much traffic it could roughly handle?

By traffic I mean how many requests per second it can consistently serve without timing out.

I realize that every server is different, and so is every application that runs on that server. That's why I thought this route may be the way to go.

Thanks a bunch!

Honza Pokorny
  • 3,205
  • 5
  • 37
  • 43

3 Answers3

4

For a very simple benchmark on web servers (if your request is the same every time), you could use ab. A very simple tool, but it gives some interesting statistics nonetheless.

Gerco Dries
  • 6,682
  • 1
  • 26
  • 35
0

If you dont mind going the paid software route, then LoadRunner is a very good choice, IMO.

I have used LoadRunner in the past for doing this kind of measurement for multiple web and non web applications.

Jagmag
  • 10,283
  • 1
  • 34
  • 58
0

And I like The Grinder. The only downside (but I don't know if others are able to do this) is that it doesn't replay well the ASP.NET hugely long generated URLs

Vinko Vrsalovic
  • 330,807
  • 53
  • 334
  • 373