This is my first game with JSON and I am surprised how slow it is.
I am quite sure I am missing something and I'll be gratefull if someone can help.
Here is my code
$.getJSON('/localhost/CountryList', function (data)
{
alert ("finished");
});
My countryList
returns an array like this
{"Code":"AF","Name":"Afghanistan"},
{"Code":"AX","Name":"Aland Islands"},
{"Code":"AL","Name":"Albania"},
etc....
The full size of my array is about 6K and It takes more than 1m 30s to have it rendered by the browser from my local development IIS.
When I used the compression, the size goes to 2K but the time is still 1m 20s
Is it normal that JSON is so slow?