CyberGordon - CDN cache optimization
Web cache introduction A Web cache is a system for optimizing the Web page loads. It is implemented both client-side (browser) and server-side (Content Delivery Network (CDN)/Web server). Web cache optimization brings several benefits: On the user side, the web page is displayed faster; very useful during mobile browsing. :racehorse: On the server side, the load is lower, and with the cloud model of pay-as-you-go, this results in cost reductions. :moneybag: And you reduce your carbon footprint by eliminating many unnecessary requests processed by browsers and servers. :seedling: The context of my project CyberGordon website static resources (images, css, js, json) are hosted on a AWS S3 Bucket behind AWS CloudFront (CDN). You can have a presentation of the architecture on my specific blog post. ...