├── .gitmodules ├── .tm_properties ├── README.md ├── benchmarks ├── cowboy │ ├── .gitignore │ ├── Makefile │ ├── rel │ │ ├── sys.config │ │ └── vm.args │ ├── relx.config │ ├── run.sh │ └── src │ │ ├── hello.app.src │ │ ├── hello_app.erl │ │ ├── hello_handler.erl │ │ └── hello_sup.erl ├── cppsp │ ├── .gitignore │ └── run.sh ├── crow │ ├── .gitignore │ ├── helloworld.cpp │ └── run.sh ├── go-fasthttp │ ├── .gitignore │ ├── helloworldserver.go │ └── run.sh ├── go │ ├── helloworldserver.go │ └── run.sh ├── hapi │ ├── .gitignore │ ├── index.js │ ├── package.json │ └── run.sh ├── jester │ ├── .gitignore │ ├── clean.sh │ ├── helloworldserver.nim │ ├── nim.cfg │ ├── run_mnsgc.sh │ └── run_rc.sh ├── kore │ ├── .gitignore │ ├── conf │ │ └── kore.conf │ ├── dh2048.pem │ ├── run.sh │ └── src │ │ └── kore.c ├── microhttpd │ ├── .gitignore │ ├── helloworld.c │ └── run.sh ├── netty │ ├── .gitignore │ ├── build.gradle │ ├── run.sh │ └── src │ │ └── main │ │ └── java │ │ ├── HelloWorldServer.java │ │ ├── HelloWorldServerHandler.java │ │ └── HelloWorldServerPipelineFactory.java ├── nginx │ ├── .gitignore │ ├── conf │ │ ├── echo.conf │ │ └── lua.conf │ ├── run_echo.sh │ └── run_lua.sh ├── nim │ ├── .gitignore │ ├── clean.sh │ ├── helloworldserver.nim │ ├── run_mnsgc.sh │ └── run_rc.sh ├── node │ ├── cluster.js │ └── run.sh ├── onion │ └── run.sh ├── puma │ ├── Gemfile │ ├── Gemfile.lock │ ├── config.ru │ └── run.sh ├── rust │ ├── .gitignore │ ├── Cargo.toml │ ├── run.sh │ └── src │ │ └── main.rs ├── undertow │ ├── .gitignore │ ├── build.gradle │ ├── run.sh │ └── src │ │ └── main │ │ └── java │ │ └── HelloWorldServer.java └── vibed │ ├── .gitignore │ ├── dub.sdl │ ├── run.sh │ └── source │ └── app.d ├── common ├── sysctl-optimized-ubuntu14.04-restore.conf ├── sysctl-optimized.conf └── threads.sh ├── results ├── E5-1650v2-Ubuntu-14.04LTS │ ├── cowboy_01.txt │ ├── cowboy_02.txt │ ├── cowboy_03.txt │ ├── cowboy_04.txt │ ├── crow_01.txt │ ├── crow_02.txt │ ├── crow_03.txt │ ├── crow_04.txt │ ├── go-fasthttp_01.txt │ ├── go-fasthttp_02.txt │ ├── go-fasthttp_03.txt │ ├── go-fasthttp_04.txt │ ├── go-fasthttp_prefork_01.txt │ ├── go-fasthttp_prefork_02.txt │ ├── go-fasthttp_prefork_03.txt │ ├── go-fasthttp_prefork_04.txt │ ├── go_01.txt │ ├── go_02.txt │ ├── go_03.txt │ ├── go_04.txt │ ├── hapi_01.txt │ ├── hapi_02.txt │ ├── hapi_03.txt │ ├── hapi_04.txt │ ├── jester_mnsgc_01.txt │ ├── jester_mnsgc_02.txt │ ├── jester_mnsgc_03.txt │ ├── jester_mnsgc_04.txt │ ├── jester_rc_01.txt │ ├── jester_rc_02.txt │ ├── jester_rc_03.txt │ ├── jester_rc_04.txt │ ├── kore_01.txt │ ├── kore_02.txt │ ├── kore_03.txt │ ├── kore_04.txt │ ├── microhttpd_01.txt │ ├── microhttpd_02.txt │ ├── microhttpd_03.txt │ ├── microhttpd_04.txt │ ├── netty_01.txt │ ├── netty_02.txt │ ├── netty_03.txt │ ├── netty_04.txt │ ├── nginx_echo_01.txt │ ├── nginx_echo_02.txt │ ├── nginx_echo_03.txt │ ├── nginx_echo_04.txt │ ├── nginx_lua_01.txt │ ├── nginx_lua_02.txt │ ├── nginx_lua_03.txt │ ├── nginx_lua_04.txt │ ├── nim_mnsgc_01.txt │ ├── nim_mnsgc_02.txt │ ├── nim_mnsgc_03.txt │ ├── nim_mnsgc_04.txt │ ├── nim_mnsgc_prefork_01.txt │ ├── nim_mnsgc_prefork_02.txt │ ├── nim_mnsgc_prefork_03.txt │ ├── nim_mnsgc_prefork_04.txt │ ├── nim_rc_01.txt │ ├── nim_rc_02.txt │ ├── nim_rc_03.txt │ ├── nim_rc_04.txt │ ├── nim_rc_prefork_01.txt │ ├── nim_rc_prefork_02.txt │ ├── nim_rc_prefork_03.txt │ ├── nim_rc_prefork_04.txt │ ├── node_01.txt │ ├── node_02.txt │ ├── node_03.txt │ ├── node_04.txt │ ├── onion_01.txt │ ├── onion_02.txt │ ├── onion_03.txt │ ├── onion_04.txt │ ├── puma_01.txt │ ├── puma_02.txt │ ├── puma_03.txt │ ├── puma_04.txt │ ├── rust_01.txt │ ├── rust_02.txt │ ├── rust_03.txt │ ├── rust_04.txt │ ├── undertow_01.txt │ ├── undertow_02.txt │ ├── undertow_03.txt │ ├── undertow_04.txt │ ├── vibed-ldc2_01.txt │ ├── vibed-ldc2_02.txt │ ├── vibed-ldc2_03.txt │ ├── vibed-ldc2_04.txt │ ├── vibed_01.txt │ ├── vibed_02.txt │ ├── vibed_03.txt │ └── vibed_04.txt └── i5-2400S-OSX-10.10.3 │ ├── cowboy_01.txt │ ├── cowboy_02.txt │ ├── cowboy_03.txt │ ├── cowboy_04.txt │ ├── go_01.txt │ ├── go_02.txt │ ├── go_03.txt │ ├── go_04.txt │ ├── jester_rc_01.txt │ ├── jester_rc_02.txt │ ├── jester_rc_03.txt │ ├── jester_rc_04.txt │ ├── netty_01.txt │ ├── netty_02.txt │ ├── netty_03.txt │ ├── netty_04.txt │ ├── nginx_echo_01.txt │ ├── nginx_echo_02.txt │ ├── nginx_echo_03.txt │ ├── nginx_echo_04.txt │ ├── nginx_lua_01.txt │ ├── nginx_lua_02.txt │ ├── nginx_lua_03.txt │ ├── nginx_lua_04.txt │ ├── nim_mnsgc_01.txt │ ├── nim_mnsgc_02.txt │ ├── nim_mnsgc_03.txt │ ├── nim_mnsgc_04.txt │ ├── nim_rc_01.txt │ ├── nim_rc_02.txt │ ├── nim_rc_03.txt │ ├── nim_rc_04.txt │ ├── onion_01.txt │ ├── onion_02.txt │ ├── onion_03.txt │ ├── onion_04.txt │ ├── ruby_puma_01.txt │ ├── ruby_puma_02.txt │ ├── ruby_puma_03.txt │ ├── ruby_puma_04.txt │ ├── rust_iron_01.txt │ ├── rust_iron_02.txt │ ├── rust_iron_03.txt │ ├── rust_iron_04.txt │ ├── undertow_01.txt │ ├── undertow_02.txt │ ├── undertow_03.txt │ └── undertow_04.txt └── time.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/.tm_properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/cowboy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/.gitignore -------------------------------------------------------------------------------- /benchmarks/cowboy/Makefile: -------------------------------------------------------------------------------- 1 | PROJECT = hello 2 | DEPS = cowboy 3 | include erlang.mk 4 | -------------------------------------------------------------------------------- /benchmarks/cowboy/rel/sys.config: -------------------------------------------------------------------------------- 1 | [ 2 | ]. 3 | -------------------------------------------------------------------------------- /benchmarks/cowboy/rel/vm.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/rel/vm.args -------------------------------------------------------------------------------- /benchmarks/cowboy/relx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/relx.config -------------------------------------------------------------------------------- /benchmarks/cowboy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/run.sh -------------------------------------------------------------------------------- /benchmarks/cowboy/src/hello.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/src/hello.app.src -------------------------------------------------------------------------------- /benchmarks/cowboy/src/hello_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/src/hello_app.erl -------------------------------------------------------------------------------- /benchmarks/cowboy/src/hello_handler.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/src/hello_handler.erl -------------------------------------------------------------------------------- /benchmarks/cowboy/src/hello_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cowboy/src/hello_sup.erl -------------------------------------------------------------------------------- /benchmarks/cppsp/.gitignore: -------------------------------------------------------------------------------- 1 | /*.xz 2 | /cppsp_1.0/ 3 | 4 | -------------------------------------------------------------------------------- /benchmarks/cppsp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/cppsp/run.sh -------------------------------------------------------------------------------- /benchmarks/crow/.gitignore: -------------------------------------------------------------------------------- 1 | /helloworld 2 | -------------------------------------------------------------------------------- /benchmarks/crow/helloworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/crow/helloworld.cpp -------------------------------------------------------------------------------- /benchmarks/crow/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/crow/run.sh -------------------------------------------------------------------------------- /benchmarks/go-fasthttp/.gitignore: -------------------------------------------------------------------------------- 1 | /helloworldserver 2 | -------------------------------------------------------------------------------- /benchmarks/go-fasthttp/helloworldserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/go-fasthttp/helloworldserver.go -------------------------------------------------------------------------------- /benchmarks/go-fasthttp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/go-fasthttp/run.sh -------------------------------------------------------------------------------- /benchmarks/go/helloworldserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/go/helloworldserver.go -------------------------------------------------------------------------------- /benchmarks/go/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/go/run.sh -------------------------------------------------------------------------------- /benchmarks/hapi/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /benchmarks/hapi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/hapi/index.js -------------------------------------------------------------------------------- /benchmarks/hapi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/hapi/package.json -------------------------------------------------------------------------------- /benchmarks/hapi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/hapi/run.sh -------------------------------------------------------------------------------- /benchmarks/jester/.gitignore: -------------------------------------------------------------------------------- 1 | /helloworldserver 2 | /nimcache/ 3 | -------------------------------------------------------------------------------- /benchmarks/jester/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0) 4 | 5 | rm -rf helloworldserver nimcache 6 | -------------------------------------------------------------------------------- /benchmarks/jester/helloworldserver.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/jester/helloworldserver.nim -------------------------------------------------------------------------------- /benchmarks/jester/nim.cfg: -------------------------------------------------------------------------------- 1 | path="lib/jester" 2 | -------------------------------------------------------------------------------- /benchmarks/jester/run_mnsgc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/jester/run_mnsgc.sh -------------------------------------------------------------------------------- /benchmarks/jester/run_rc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/jester/run_rc.sh -------------------------------------------------------------------------------- /benchmarks/kore/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .objs 3 | kore.so 4 | assets.h 5 | cert 6 | -------------------------------------------------------------------------------- /benchmarks/kore/conf/kore.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/kore/conf/kore.conf -------------------------------------------------------------------------------- /benchmarks/kore/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/kore/dh2048.pem -------------------------------------------------------------------------------- /benchmarks/kore/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname "$0") 4 | 5 | kore run 6 | -------------------------------------------------------------------------------- /benchmarks/kore/src/kore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/kore/src/kore.c -------------------------------------------------------------------------------- /benchmarks/microhttpd/.gitignore: -------------------------------------------------------------------------------- 1 | /helloworld 2 | -------------------------------------------------------------------------------- /benchmarks/microhttpd/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/microhttpd/helloworld.c -------------------------------------------------------------------------------- /benchmarks/microhttpd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/microhttpd/run.sh -------------------------------------------------------------------------------- /benchmarks/netty/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /.gradle/ 3 | -------------------------------------------------------------------------------- /benchmarks/netty/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/netty/build.gradle -------------------------------------------------------------------------------- /benchmarks/netty/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0) 4 | 5 | exec gradle run 6 | -------------------------------------------------------------------------------- /benchmarks/netty/src/main/java/HelloWorldServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/netty/src/main/java/HelloWorldServer.java -------------------------------------------------------------------------------- /benchmarks/netty/src/main/java/HelloWorldServerHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/netty/src/main/java/HelloWorldServerHandler.java -------------------------------------------------------------------------------- /benchmarks/netty/src/main/java/HelloWorldServerPipelineFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/netty/src/main/java/HelloWorldServerPipelineFactory.java -------------------------------------------------------------------------------- /benchmarks/nginx/.gitignore: -------------------------------------------------------------------------------- 1 | /logs/ 2 | /*_temp/ 3 | -------------------------------------------------------------------------------- /benchmarks/nginx/conf/echo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nginx/conf/echo.conf -------------------------------------------------------------------------------- /benchmarks/nginx/conf/lua.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nginx/conf/lua.conf -------------------------------------------------------------------------------- /benchmarks/nginx/run_echo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nginx/run_echo.sh -------------------------------------------------------------------------------- /benchmarks/nginx/run_lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nginx/run_lua.sh -------------------------------------------------------------------------------- /benchmarks/nim/.gitignore: -------------------------------------------------------------------------------- 1 | /helloworldserver 2 | /nimcache/ 3 | -------------------------------------------------------------------------------- /benchmarks/nim/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0) 4 | 5 | rm -rf helloworldserver nimcache 6 | -------------------------------------------------------------------------------- /benchmarks/nim/helloworldserver.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nim/helloworldserver.nim -------------------------------------------------------------------------------- /benchmarks/nim/run_mnsgc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nim/run_mnsgc.sh -------------------------------------------------------------------------------- /benchmarks/nim/run_rc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/nim/run_rc.sh -------------------------------------------------------------------------------- /benchmarks/node/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/node/cluster.js -------------------------------------------------------------------------------- /benchmarks/node/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname "$0") 4 | 5 | node cluster.js 6 | -------------------------------------------------------------------------------- /benchmarks/onion/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/onion/run.sh -------------------------------------------------------------------------------- /benchmarks/puma/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem "puma" 5 | -------------------------------------------------------------------------------- /benchmarks/puma/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/puma/Gemfile.lock -------------------------------------------------------------------------------- /benchmarks/puma/config.ru: -------------------------------------------------------------------------------- 1 | run Proc.new { |env| ['200', {'Content-Type' => 'text/html'}, ['Hello World!']] } 2 | -------------------------------------------------------------------------------- /benchmarks/puma/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/puma/run.sh -------------------------------------------------------------------------------- /benchmarks/rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /*.lock 3 | -------------------------------------------------------------------------------- /benchmarks/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/rust/Cargo.toml -------------------------------------------------------------------------------- /benchmarks/rust/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/rust/run.sh -------------------------------------------------------------------------------- /benchmarks/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/rust/src/main.rs -------------------------------------------------------------------------------- /benchmarks/undertow/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /.gradle/ 3 | -------------------------------------------------------------------------------- /benchmarks/undertow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/undertow/build.gradle -------------------------------------------------------------------------------- /benchmarks/undertow/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0) 4 | 5 | exec gradle run 6 | -------------------------------------------------------------------------------- /benchmarks/undertow/src/main/java/HelloWorldServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/undertow/src/main/java/HelloWorldServer.java -------------------------------------------------------------------------------- /benchmarks/vibed/.gitignore: -------------------------------------------------------------------------------- 1 | /vibed 2 | /dub.selections.json 3 | /.dub 4 | -------------------------------------------------------------------------------- /benchmarks/vibed/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/vibed/dub.sdl -------------------------------------------------------------------------------- /benchmarks/vibed/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname "$0") 4 | 5 | set -x 6 | exec dub run -b release 7 | -------------------------------------------------------------------------------- /benchmarks/vibed/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/benchmarks/vibed/source/app.d -------------------------------------------------------------------------------- /common/sysctl-optimized-ubuntu14.04-restore.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/common/sysctl-optimized-ubuntu14.04-restore.conf -------------------------------------------------------------------------------- /common/sysctl-optimized.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/common/sysctl-optimized.conf -------------------------------------------------------------------------------- /common/threads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/common/threads.sh -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/cowboy_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/cowboy_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/cowboy_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/cowboy_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/cowboy_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/cowboy_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/cowboy_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/cowboy_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/crow_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/crow_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/crow_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/crow_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/crow_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/crow_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/crow_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/crow_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go-fasthttp_prefork_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/go_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/go_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/hapi_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/hapi_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/hapi_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/hapi_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/hapi_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/hapi_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/hapi_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/hapi_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_mnsgc_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/jester_rc_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/kore_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/kore_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/kore_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/kore_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/kore_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/kore_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/kore_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/kore_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/microhttpd_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/netty_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/netty_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/netty_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/netty_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/netty_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/netty_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/netty_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/netty_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_echo_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nginx_lua_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_mnsgc_prefork_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/nim_rc_prefork_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/node_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/node_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/node_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/node_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/node_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/node_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/node_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/node_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/onion_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/onion_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/onion_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/onion_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/onion_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/onion_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/onion_04.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/puma_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/puma_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/puma_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/puma_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/puma_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/puma_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/puma_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/puma_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/rust_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/rust_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/rust_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/rust_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/rust_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/rust_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/rust_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/rust_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/undertow_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/undertow_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/undertow_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/undertow_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/undertow_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/undertow_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/undertow_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/undertow_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed-ldc2_04.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed_01.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed_02.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed_03.txt -------------------------------------------------------------------------------- /results/E5-1650v2-Ubuntu-14.04LTS/vibed_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/E5-1650v2-Ubuntu-14.04LTS/vibed_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/cowboy_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/cowboy_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/cowboy_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/cowboy_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/cowboy_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/cowboy_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/cowboy_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/cowboy_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/go_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/go_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/go_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/go_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/go_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/go_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/go_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/go_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/jester_rc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/jester_rc_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/jester_rc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/jester_rc_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/jester_rc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/jester_rc_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/jester_rc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/jester_rc_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/netty_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/netty_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/netty_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/netty_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/netty_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/netty_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/netty_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/netty_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_echo_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_echo_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_echo_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_echo_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_echo_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_echo_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_echo_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_echo_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_lua_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_lua_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_lua_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_lua_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_lua_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_lua_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nginx_lua_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nginx_lua_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_mnsgc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_mnsgc_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_mnsgc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_mnsgc_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_mnsgc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_mnsgc_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_mnsgc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_mnsgc_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_rc_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_rc_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_rc_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_rc_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_rc_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_rc_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/nim_rc_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/nim_rc_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/onion_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/onion_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/onion_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/onion_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/onion_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/onion_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/onion_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/onion_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/ruby_puma_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/ruby_puma_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/ruby_puma_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/ruby_puma_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/ruby_puma_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/ruby_puma_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/ruby_puma_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/ruby_puma_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/rust_iron_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/rust_iron_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/rust_iron_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/rust_iron_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/rust_iron_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/rust_iron_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/rust_iron_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/rust_iron_04.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/undertow_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/undertow_01.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/undertow_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/undertow_02.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/undertow_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/undertow_03.txt -------------------------------------------------------------------------------- /results/i5-2400S-OSX-10.10.3/undertow_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/results/i5-2400S-OSX-10.10.3/undertow_04.txt -------------------------------------------------------------------------------- /time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanoant/WebFrameworkBenchmark/HEAD/time.sh --------------------------------------------------------------------------------