Subscription Service

74 words - 1 min read

8/31/2022


This is final series on learning concurency in Go by building an subscription service that generate pdf on the fly using concurency

You can check the learning golang concurency series in here the working code subscription-api is here

What I Learn permalink

  • Learning Goroutines, go keyword and waitGroups
  • Learning trace race condition using go --race
  • learning mutex and producer - consumer problem and solve it using concurency

  • learning golang channels and buffered chanels
  • Buiilding subscription service that using golang concurency