├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bench_test.go ├── conf └── app.conf ├── github_test.go ├── gplus_test.go ├── parse_test.go ├── routers.go ├── routers_test.go └── static_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.prof 3 | *.res 4 | *.test 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/bench_test.go -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/github_test.go -------------------------------------------------------------------------------- /gplus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/gplus_test.go -------------------------------------------------------------------------------- /parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/parse_test.go -------------------------------------------------------------------------------- /routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/routers.go -------------------------------------------------------------------------------- /routers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/routers_test.go -------------------------------------------------------------------------------- /static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkieltyka/go-http-routing-benchmark/HEAD/static_test.go --------------------------------------------------------------------------------