https://github.com/carbonfive/hellod
HTTP performance testing
https://github.com/carbonfive/hellod
Last synced: 4 months ago
JSON representation
HTTP performance testing
- Host: GitHub
- URL: https://github.com/carbonfive/hellod
- Owner: carbonfive
- Created: 2011-09-22T02:39:39.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-10-31T16:19:53.000Z (about 14 years ago)
- Last Synced: 2024-04-15T12:18:27.617Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 982 KB
- Stars: 44
- Watchers: 6
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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...