(Almost) every web application passes data from place to place, and a common way to do that is with JSON.
However, JSON has downsides on performance critical paths. Its parsing overhead, even on small payloads, incurs quite a penalty. In mobile devices with weaker hardware this penalty is magnified by jankyness your users might experience. These performance issues can be eliminated using Google’s latest new serialization library - FlatBuffers. We’ll go over some use-cases and see how FlatBuffers let you serialize your data while keeping your application with a sleek 60FPS.