Artwork

Content provided by Dominic St-Pierre. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Dominic St-Pierre or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.
Player FM - Podcast App
Go offline with the Player FM app!

013: Go's concurrency to the rescue

14:54
 
Share
 

Manage episode 348463180 series 3302141
Content provided by Dominic St-Pierre. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Dominic St-Pierre or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.

Go's worker queue pattern:

type WorderPool struct {
queue chan int
}

func (wp *WorkerPool) start() {
for i := 0; i < 500; i++ {
go funcIO {
for id := range wp.queue {
doSomething(id)
}
}()
}
}

func (wp *WorkerPool) add(id int) {
wp.queue <- id
}

Best way to show support for the pod is by sharing it around and buying my course.

  continue reading

42 episodes

Artwork

013: Go's concurrency to the rescue

go podcast()

26 subscribers

published

iconShare
 
Manage episode 348463180 series 3302141
Content provided by Dominic St-Pierre. All podcast content including episodes, graphics, and podcast descriptions are uploaded and provided directly by Dominic St-Pierre or their podcast platform partner. If you believe someone is using your copyrighted work without your permission, you can follow the process outlined here https://player.fm/legal.

Go's worker queue pattern:

type WorderPool struct {
queue chan int
}

func (wp *WorkerPool) start() {
for i := 0; i < 500; i++ {
go funcIO {
for id := range wp.queue {
doSomething(id)
}
}()
}
}

func (wp *WorkerPool) add(id int) {
wp.queue <- id
}

Best way to show support for the pod is by sharing it around and buying my course.

  continue reading

42 episodes

All episodes

×
 
Loading …

Welcome to Player FM!

Player FM is scanning the web for high-quality podcasts for you to enjoy right now. It's the best podcast app and works on Android, iPhone, and the web. Signup to sync subscriptions across devices.

 

Quick Reference Guide