|
|
|
|
|
by hansvm
541 days ago
|
|
Protobufs have a massive data dependency baked into the wire format, turning parsing into an intensive core-bound problem. Interestingly, they're not usually smaller than gzipped JSON either (the compression it has built-in is pretty rudimentary), so if you don't compress it and don't have a stellar network you might actually pay more for the total transfer+decode than gzipped JSON, despite usually being somewhat faster to parse. |
|