Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

reduce server load by loading image files / javascript files from another server?

Tags:

html

I am thinking to save server load, i could load common javascript files (jquery src) and maybe certain images from websites like Google (which are almost always never down, and always pretty fast, maybe faster than my server).

Will it save much load?

Thanks!

UPDATE: I am not so much worried about saving bandwidth, as I am reducing Server Load because my server has difficulty when there are a lot of users online, and I think this is because there are too many images/files it loads from my single server.

like image 372
chris Avatar asked Aug 06 '26 16:08

chris


1 Answers

You might consider putting up another server that does nothing but serve your static files using an ultra efficient web server such as lighttpd

like image 160
Don Neufeld Avatar answered Aug 08 '26 12:08

Don Neufeld