Parallelisieren Sie Dateidownloads in Golang mithilfe von Goroutinen
Frage:
Können wir Goroutinen dazu nutzen? Mehrere Dateien gleichzeitig herunterladen?
Codekontext:
<code class="go">package main import ( "fmt" "io" "io/ioutil" "net/http" "net/url" "os" "path/filepath" "sync" ) // ... (existing Dropbox access token handling code) var wg sync.WaitGroup func downloadFile(file File, token TokenResponse) { // Acquire WaitGroup counter wg.Add(1) defer wg.Done() // Release counter when function returns downloadURL := fmt.Sprintf("https://api-content.dropbox.com/1/files/dropbox/%s?access_token=%s", file.Path, token.AccessToken) resp, err := http.Get(downloadURL) if err != nil { panic(err) } defer resp.Body.Close() filename := filepath.Base(file.Path) outFile, err := os.Create(filename) if err != nil { panic(err) } defer outFile.Close() io.Copy(outFile, resp.Body) } func main() { // ... (existing Dropbox authorization and file list code) // Spawn goroutines for file downloads for _, file := range flr.FileList { go downloadFile(file, tr) if count >= 2 { break } } // Wait for all goroutines to complete before exiting wg.Wait() }</code>
Dieser geänderte Code verwendet eine sync.WaitGroup, um sicherzustellen, dass die Haupt-Goroutine erst beendet wird, wenn alle Dateien vollständig sind Die Downloads sind abgeschlossen. Dadurch können Goroutinen Dateien parallel herunterladen, was die Leistung verbessert.
Das obige ist der detaillierte Inhalt von## Können Goroutinen das Herunterladen von Dateien in Golang beschleunigen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!