Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carbonfive/hellod
HTTP performance testing
https://github.com/carbonfive/hellod
Last synced: about 1 month ago
JSON representation
HTTP performance testing
- Host: GitHub
- URL: https://github.com/carbonfive/hellod
- Owner: carbonfive
- Created: 2011-09-22T02:39:39.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-10-31T16:19:53.000Z (about 13 years ago)
- Last Synced: 2024-04-15T12:18:27.617Z (9 months 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.rbNode - port 8081
-----------brew install node
node node/server.jsGo - port 8082
-----------easy_install mercurial
brew install go
export GOROOT=/usr/local/Cellar/go/r60.1
cd go
make
./hellodClojure - port 8083
-----------Install Leiningen from https://github.com/technomancy/leiningen
cd clj ; lein runErlang - 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
./hellodJava / Simple Java NIO - port 8086
-----------cd java-nio
./compile
./hellodJava / JBoss Netty (w/ NIO) - port 8087
-----------cd java-netty
./compile
./hellodBenchmark
-----------
ab -n 10000 -c 100 http://localhost:8080/or 8081 or 8082...