What is a CDN? A Content Delivery Network is a caching service that serves up your images, JS, CSS, HTML from a geographically distributed network of servers. When a user request your site, the CDN serves up the content from the closest location to cut down on load time. Let's say you have a file on your server http://www.domain.com/Portals/0/scripts/CoolStyles.CSS a trace route can show you the steps that it takes a particular user, on their internet connection to request that file from your server. When a request for a specific file is made by a user, the server closest to that user (in terms of the minimum number of nodes between the server and the user) is dynamically determined. This optimizes the speed with which the content is delivered to that user. When on a CDN, the steps are reduced because (hopefully) they are closer to your location, AND they're serving a cached copy of your file so that the request load is not on your server. http://Geographically Locat...
Comments
Post a Comment