Monday, March 14, 2022

Content Delivery Network - CDN

CDN is a service that accelerates internet content delivery. 

It make your website faster.      

CDN helps in reducing the amount of distance between user and server providing the content 



We've CDN end points in many locations around the world.

Now when users in A, B, C ,D tries to access same content, it first retrieved by Content Delivery Network service and then distributed around the world. 

Now, our users in A instead of going to MS, it will be able to access the content directly from closest geographical location, drastically reducing the amount of time that it takes to retrieve that content.



Indirect benefit are as follows:

  • it leads to reduction in the load or reduction in amount of capacity that you need in MS to serve all these users.
  • it leads to increase in up-time
  • it leads to increase in security


No comments:

Post a Comment

Popular Posts

Most Featured Post

GitHub: Squash all commits in PR

  Command Meaning git fetch origin Get the latest origin/master . git reset --soft origin/master Move your branch to match origin/master , b...