From a89236f33302ed916fa3a37e3d0f4cb214f370e3 Mon Sep 17 00:00:00 2001 From: SamarS1ngh <112770584+SamarS1ngh@users.noreply.github.com> Date: Sat, 22 Oct 2022 22:25:09 +0530 Subject: [PATCH] Add content for client-side caching (#2689) * Added client-side-file-caching There was no data on client-side-file-caching, so I added some for people to learn. * Update content/roadmaps/101-backend/content/110-caching/102-client-side.md Co-authored-by: Kamran Ahmed --- .../101-backend/content/110-caching/102-client-side.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/110-caching/102-client-side.md b/content/roadmaps/101-backend/content/110-caching/102-client-side.md index 2d2376520..317bfdd02 100644 --- a/content/roadmaps/101-backend/content/110-caching/102-client-side.md +++ b/content/roadmaps/101-backend/content/110-caching/102-client-side.md @@ -1 +1,5 @@ -# Client side \ No newline at end of file +# Client Side Caching + +Client-side caching is the storage of network data to a local cache for future re-use. After an application fetches network data, it stores that resource in a local cache. Once a resource has been cached, the browser uses the cache on future requests for that resource to boost performance. + +Everything you need to know about HTTP Caching