we went from 250k connections per node to 1.5 million connections per node” • “Full integration test suite dropped from 25 minutes to 2 minutes.” • “The time to do a full API server deploy with rolling restarts dropped from 30 minutes to 3 minutes” http://blog.parse.com/learn/how-we-moved-our-api-from-ruby-to-go-and-saved-our-sanity/
• Garbage Collection • Concurrency The gopher is covered under Creative Commons Attribution 3.0 license. They were designed by Renée French, who also designed Glenda, the Plan 9 bunny. Additional info can be found here.
The HandlerFunc type is an adapter to allow the use of // ordinary functions as HTTP handlers. If f is a function // with the appropriate signature, HandlerFunc(f) is a // Handler object that calls f. type HandlerFunc func(ResponseWriter, *Request) // ServeHTTP calls f(w, r). func (f HandlerFunc) ServeHTTP(w ResponseWriter, r *Request) { f(w, r) }