Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check the cause of slow loading time among different server

A e-shop has developed using perstashop and put to the three server:

the first 2 is amazon, should be same setting

Server 1: http://be-pure.com/en/women/3-slim-y-tank.html

Server 2: http://52.77.216.83/en/women/3-slim-y-tank.html

the last one is just local hosting

Server 3: http://internal001.zizsoft.com/be_pure/en/women/3-slim-y-tank.html

The problem is server 1 loading very slow compare to the other two server, but the performance should be the best among 3.

It looks as if server 1 hasn't cache the files

but in fact, all of them has

turn on smarty cache, using file system , with recomplie when modify and turn on the file system cache

Given that the code and server setting are the same, both 2 amazon server is same setting, and localhost one is other server, however it should be slower than server 1

1) How to debug/ check whether the file is using cache already?

(the cache file locate in cache/smarty and cache/cachefs in server)

2) And what takes the long load time for server 1? Just consider it as an PHP site, any ways to check why it is slow?

Thanks a lot for helping

like image 242
user3538235 Avatar asked Dec 23 '15 04:12

user3538235


2 Answers

Refer to the comments - I misinterpreted the data I was looking at earlier. It appears the server can only handle maybe 5-10 requests at a time so things get blocked until the other things are done loading. You likely just need to update your web server's configuration to handle more requests.

There is also a lot of JS data in the file. It is 318KB just to load the page and it has to do many requests to get JS/CSS files before it even gets to any of the HTML. So it is 318KB + all the external JS/CSS it needs to fetch (wow!). That's like 4MB of stuff just to load a page.

Check the modify timestamp on the files generated by your caching system to verify that caching is working.

Edit:

Since there is now a bounty out - please review the comment discussion we had. There is an issue where a traceroute doesn't make it to the server destination and I suspect that is related to the slowness but that type of network issue is over my head.

like image 165
Clay Avatar answered Sep 26 '22 23:09

Clay


I am giving answer of your 2nd question.

I dont't know the exact problem of slow loading. but We had faced same issue in one of our projects in last month. Server was amazon.

One of our Instance was very slow. We had tried many solutions but none of them were working. Then We have found a solution which looks very unfair but it Worked for us.

We had Just restarted the slow Instance and We got success.

I hope this solution will work for u also.

All the Best :)

like image 39
Ravi Avatar answered Sep 24 '22 23:09

Ravi