Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
Engine.UnescapePathValues comment make me confused.
// If true, the path value will be unescaped.
// If UseRawPath is false (by default), the UnescapePathValues effectively is true,
// as url.Path gonna be used, which is already unescaped.
UnescapePathValues bool
It should be:
// If true, the path value will be unescaped.
// If UseRawPath is false (by default), the UnescapePathValues effectively is false,
// as url.Path gonna be used, which is already unescaped.
UnescapePathValues bool
Engine.UnescapePathValues comment make me confused.
It should be:
refer to logic of code below: