diff --git a/content/roadmaps/101-backend/content/110-caching/101-server-side/readme.md b/content/roadmaps/101-backend/content/110-caching/101-server-side/readme.md index ed3765dd8..6fff96bb0 100644 --- a/content/roadmaps/101-backend/content/110-caching/101-server-side/readme.md +++ b/content/roadmaps/101-backend/content/110-caching/101-server-side/readme.md @@ -1 +1,12 @@ -# Server side \ No newline at end of file +# Server side + +Server-side caching temporarily stores web files and data on the origin server to reuse later. + +When the user first requests for the webpage, the website goes under the normal process of retrieving data from the server and generates or constructs the webpage of the website. After the request has happened and the response has been sent back, the server copies the webpage and stores it as a cache. + +Next time the user revisits the website, it loads the already saved or cached copy of the webpage, thus making it faster. + +Free Content +Server-side caching +Server-side caching and Client-side caching +