Reputation: 421
I have a site using some ajax here: http://deezteez.com/
If you sort by "Newest" (top right drop down box) you will notice that the new images (of products that just got added recently) will take about 30 seconds to actually load in, even though the page is done loading. older images don't do this, even if I start with a clear cache.
Anyone have an idea of what would be causing this?
Upvotes: 2
Views: 197
Reputation: 187272
Chrome's console seems to show that your server is simply slow. The graph below is how your images load in. The light colored bar is when the image is requested. The dark colored bar is the image actually being downloaded.
And you can see they all get requested at the same time. But then it takes a while for the server to respond to those requests. Once the server responds, things seem to download quickly, but that response seems quite lagged.
What is going on behind the scenes on your server, I have no idea. But some suggestions:
Upvotes: 4