You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently JSON, XML, FORM, Multipart Form and url.Values are support out of the box.
119
+
currently JSON, XML, FORM, Multipart Form and url.Values are support out of the box; there are also
120
+
individual functions for each as well when you know the Content-Type.
120
121
```go
121
122
// second argument denotes yes or no I would like URL query parameter fields
122
123
// to be included. i.e. 'id' and 'id2' in route '/user/:id?id2=val' should it be included.
@@ -155,40 +156,40 @@ Other middleware will be listed under the examples/middleware/... folder for a q
155
156
156
157
Benchmarks
157
158
-----------
158
-
Run on MacBook Pro (Retina, 15-inch, Late 2013) 2.6 GHz Intel Core i7 16 GB 1600 MHz DDR3 using Go version go1.7.3 darwin/amd64
159
+
Run on MacBook Pro (Retina, 15-inch, Late 2013) 2.6 GHz Intel Core i7 16 GB 1600 MHz DDR3 using Go version go1.7.4 darwin/amd64
159
160
160
161
NOTICE: pure uses a custom version of [httprouter](https://github.com/julienschmidt/httprouter)'s radix tree, benchmarks can be found [here](https://github.com/joeybloggs/go-http-routing-benchmark/tree/pure-and-lars) the slowdown is with the use of the `context` package, as you can see when no SEO params are defined, and therefore no need to store anything in the context, it is faster than even lars.
0 commit comments