Questions tagged [weighttp]

weighttp (pronounced weighty) is a lightweight and small benchmarking tool for webservers

weighttp (pronounced weighty) is a lightweight and small benchmarking tool for webservers.

It was designed to be very fast and easy to use and only supports a tiny fraction of the HTTP protocol in order to be lean and simple.

weighttp supports multithreading to make good use of modern CPUs with multiple cores as well as asynchronous i/o for concurrent requests within a single thread.

For event handling, weighty relies on libev which fits the design perfectly, being lightweight and fast itself.

Thanks to that, weighty supports all modern high-performance event interfaces like epoll or kqueue, that the major OSs provide.

Homepage

http://redmine.lighttpd.net/projects/weighttp/wiki

2 questions
5
votes
1 answer

g-wan - reproducing the performance claims

Using gwan_linux64-bit.tar.bz2 under Ubuntu 12.04 LTS unpacking and running gwan then pointing wrk at it (using a null file null.html) wrk --timeout 10 -t 2 -c 100 -d20s http://127.0.0.1:8080/null.html Running 20s test @…
user2603628
  • 146
  • 2
  • 5
3
votes
1 answer

How to make a thread run faster?

I'm new at the web develope and I have a small problem. I'm using scala akka with spray to make a website. My leader give me a question : I have a response like this case HttpRequest(GET, Uri.Path("/ping"), _, _, _) => { Thread.sleep(10) …