Protobuf is so much faster than JSON
At work, I have a program that needs to load an external JSON file that is 1.4GB in size, it takes about 45 seconds for it to load and json.Unmarshal. I took that 45 second start-up time for granted. Today, I thought, what if I convert that data to protobuf? Will it speed up the start-up time? (P.S. there’s a very good benchmark of different go serialization here: https://github.com/alecthomas/go_serialization_benchmarks) So I did the switch....