Fast JSON parsing in Go for OpenRTB

The code used for this test can be found here. TL;DR: when looking into overall performance and usability, json-iter is the clear winner. It gives roughly a 4x improvement over encoding/json and 1.2x over the second most performant option. It is also extremely easy to use. You simply need to import it, define a global variable (that you can call json to make it even easier) and then use it like you would use encoding/json....

November 22, 2020 · 9 min · matipan