Go Walkthrough: encoding/binary

1 · · Aug. 29, 2016, 6 a.m.
When you need to squeeze every last bit or CPU cycle out of your protocol, one of the best tools is the encoding/binary package. It operates on the lowest level and is built for working with binary protocols. We previously looked at using encoding/json for text-based protocols but...