mention httprouter

This commit is contained in:
Damian Gryski 2018-04-11 17:18:10 -07:00
parent 0c35ecd09f
commit 40cee78670

View File

@ -895,7 +895,9 @@ allocate it. But you also pay every time the garbage collection runs.
Popular replacements for standard library packages:
* encoding/json -> ffjson, easyjson, etc
* net/http -> fasthttp (but incompatible API, not RFC compliant in subtle ways)
* net/http
* fasthttp (but incompatible API, not RFC compliant in subtle ways)
* httprouter (has other features besides speed; I've never actually seen routing in my profiles)
* regexp -> ragel (or other regular expression package)
* serialization
* encoding/gob -> <https://github.com/alecthomas/go_serialization_benchmarks>