Whats faster for including scripts, using CDN (Google) or store them locally in website root?
|
If you mean the core jQuery libraries, use the google CDN for an internet-facing site (as opposed to an internal one). The CDN has the following advantages you'll find hard to compete with:
Though you can configure the cache headers just like they do, you probably can't serve the file faster. That being said, the library/CDN is only part of the puzzle. Miscellaneous plugins and code you have should also be minified, combined and served via gzip. |
|||||||||||||||
|
|
Depends on how fast your server is. The CDN however is probably faster, your client may have the file already cached from another website. It'll offload a lot of bandwidth from your site, however you rely on the stability of a 3rd party to maintain the file. (Although I don't see google having issues any time soon) |
|||
|
|
|
A Google CDN :-) |
|||
|
|
|
I'd say Google's CDN for reasons others have stated. However, if your target market is in close proximity to your server it may be better to server it from your server. Say, for instance, you have a site forOrlandoFloridaPeopleOnly.com/. If your server is hosted in Orlando, Florida and Google's closest content delivery servers are in Miami, Florida and Atlanta, Georgia (which is true), your server may [will probably] be faster if the visitor didn't already have a cached copy of the file from Google CDN. Remember, if you do serve static content to your visitors form your server try to parallelize the downloads by utilizing sub-domains or other means. And for goodness sakes...don't transfer cookies for static content. I'm not sure how reliable this source is: Google data centers. So don't necessarily count on it. |
||||
|
|
|
It may be worth noting that Visual Studio has problems with Intellisense for Google's CDN. Microsoft also has a CDN that allows Intellisense to function correctly. But yes, use a CDN. |
|||
|
|
|
Unfortunately studies have recently shown that Googles CDN actually hinders performance.
See here also Should You Use JavaScript Library CDNs? |
|||
|
|