Is it worth the effort to try to reduce JSON size?
I am submitting relatively lots of data from a mobile application (up to 1000 JSON objects), that I would normally encode like this:
[{
id: 12,
score: 34,
interval: 5678,
sub: 9012
}, {
id: ...
}, ...]
I could make the payload smaller by submitting an array of arrays instead:
[[12, 34, 5678, 9012], [...], ...]
…