From 752a1d44d7bf98a44da7dfa4cdc9d0fb0cdd8161 Mon Sep 17 00:00:00 2001 From: Caio Portugal Date: Fri, 10 May 2024 18:12:30 -0300 Subject: [PATCH] Add HTTP Caching article from mozilla.org (#5022) --- .../system-design/content/112-caching/100-client-caching.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/data/roadmaps/system-design/content/112-caching/100-client-caching.md b/src/data/roadmaps/system-design/content/112-caching/100-client-caching.md index 89d574225..f7c5f051b 100644 --- a/src/data/roadmaps/system-design/content/112-caching/100-client-caching.md +++ b/src/data/roadmaps/system-design/content/112-caching/100-client-caching.md @@ -7,3 +7,7 @@ One common example of client-side caching is web browsers caching frequently acc Another example of client-side caching is application-level caching. Some applications, such as mobile apps, can cache data on the client's device to improve performance and reduce the amount of data that needs to be transferred over the network. Client side caching has some advantages like reducing server load, faster page load times, and reducing network traffic. However, it also has some drawbacks like the potential for stale data if the client-side cache is not properly managed, or consuming memory or disk space on the client's device. + +Learn more from the following links: + +- [HTTP Caching](https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching)