Skip to content

Instantly share code, notes, and snippets.

@chrisgoffinet
Last active August 17, 2018 16:38
Show Gist options
  • Save chrisgoffinet/7ce10b0517a99b41039acd32faeb0d89 to your computer and use it in GitHub Desktop.
Save chrisgoffinet/7ce10b0517a99b41039acd32faeb0d89 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"io/ioutil"
"net/http"
"time"
)
func main() {
for i := 0; i < 100; i++ {
go func() {
resp, err := http.Get("http://cnn.com")
if err != nil {
fmt.Println(err)
return
}
content, err := ioutil.ReadAll(resp.Body)
fmt.Println("content size: ", len(content))
}()
}
time.Sleep(3600 * time.Second)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment