Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/carbonfive/hellod

HTTP performance testing
https://github.com/carbonfive/hellod

Last synced: about 1 month ago
JSON representation

HTTP performance testing

Awesome Lists containing this project

README

        

HelloD
====================

Testing high performance HTTP "Hello World" servers.

Ruby - port 8080
-----------

gem install eventmachine http_parser.rb
ruby ruby/server.rb

Node - port 8081
-----------

brew install node
node node/server.js

Go - port 8082
-----------

easy_install mercurial
brew install go
export GOROOT=/usr/local/Cellar/go/r60.1
cd go
make
./hellod

Clojure - port 8083
-----------

Install Leiningen from https://github.com/technomancy/leiningen
cd clj ; lein run

Erlang - port 8084
-----------

brew install -v erlang --use-gcc
brew install rebar
cd erlang; ./shell
# in shell
> application:start(hello).

NOTE: you need the trailing '.' in the shell.

C / libev - port 8085
-----------

brew install libev (or apt-get install libev libev-dev)
make
./hellod

Java / Simple Java NIO - port 8086
-----------

cd java-nio
./compile
./hellod

Java / JBoss Netty (w/ NIO) - port 8087
-----------

cd java-netty
./compile
./hellod

Benchmark
-----------
ab -n 10000 -c 100 http://localhost:8080/

or 8081 or 8082...