2025
February 23 GopherCon 2019: Socket to me: Where do sockets live in Go? - Gabbi Fisher Gabbi Fisher shows how to write basic TCP and UDP socket servers in Go. It’s pretty easy since the net package in the standard library offers some handy abstractions. Plus, making the servers concurrent is quite simple because you can easily spin up a new goroutine to handle each connection. I’ve written socket servers in Python before, and making them concurrent wasn’t fun—even with the nice abstractions of the socketserver library. ...