stackoverflow.com/questions/21080642/memory-leak-in-go-http-standard-library

Have a go binary implement an http server:

package main

import ( "net/http" )

func main() { http.ListenAndServe(":8080", nil) }

It will start with ~850 kb or so of memory. Send it some


Comments (0)

Sign in to post comments.