While examining code on Facebook, specifically the headers of AJAX requests/responses, I noticed that they are compressed or minified similar to CSS or JavaScript.
For example:
{ id: 1000, username: "testing" }
gets turned into:
{a:1000,b:"testing"}
I am curious if ASP.NET MVC supports similar compression/minification. Is there a special model binding technique that could achieve this?