Skip to content

Latest commit

 

History

History
70 lines (50 loc) · 1.12 KB

README.md

File metadata and controls

70 lines (50 loc) · 1.12 KB

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...