Last active
August 17, 2018 16:38
-
-
Save chrisgoffinet/7ce10b0517a99b41039acd32faeb0d89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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