Tag Conference

GoGoConf 2019 - report
3 min read

Recently I’ve been on the GoGoConf conference in Cracow. It was a cool opportunity to learn more and meet interesting persons. Today I’ll tell you about my thoughts regarding every talk from 2019 edition. Most of the talks don’t have video available yet but when the videos will be published I’ll update the post.

Tackling contention: the monsters inside the ’sync.Locker’ - Roberto Clapis

I personally like Roberto a lot for the way he behaves and how professional he is. In his talk he explained how to fix performance problems using tools like pprof and trace. One of my takeaways from this talk is that we should use atomic package only really when necessary. It’s not worth use the atomic package instead of mutex because the mutexes use the atomic anyway.