about summary refs log tree commit diff
path: root/router_benchmark_test.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The response object is passed to the matching function.Franck Cuny2013-05-111-3/+2
| | | | | | Instead of letting the matching function creates the response object, it's created earlier with a default HTTP status of 200, and the object is passed to the function.
* Rename the package from mooh to routerFranck Cuny2013-05-081-7/+8
|
* Placeholder in URL use the {\w+} form, not :\w+Franck Cuny2013-04-271-2/+2
| | | | | This is the format supported for URI templates (RFC 6570). We're not using it now but this is something that I consider for a near future.
* Rename all instances of Dispatcher to Router.Franck Cuny2013-04-271-1/+1
|
* Add benchmark for the router.Franck Cuny2013-04-271-0/+61
This is for future performances' regressions.