In one of my web app pages I display 7 charts that in total may involve about 25000 records (in terms of datatable records). Debugging that page with Chrome (using IIS Express and an URL like
http://localhost:55555/
I'm using Chrome's version 41.0.2272.118 m, and the page load takes more than 1 minute, however if I use either Firefox or IE the page is loaded in less than about 6s.
I don't have an extensive informatics background, so I started searching for possible fixes and I've already uncommented IPv4 localhost line:
# localhost name resolution is handled within DNS itself.
127.0.0.1 localhost
# ::1 localhost
But the problem still persists, and it gets particularly annoying due to the time i ha ...
Go to the complete details ...