Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
rahulgupta7348 3f6c87feec Add caching content (#1544) 2 years ago
..
101-server-side Add Redis video (#1324) 2 years ago
100-cdn.md Update 100-cdn.md (#1123) 3 years ago
102-client-side.md Add interactivity for the backend roadmap 3 years ago
readme.md Add caching content (#1544) 2 years ago

readme.md

Caching

Caching is a technique of storing frequently used data or information in a local memory, for a certain time period. So, next time, when the client requests the same information, instead of retrieving the information from the database, it will give the information from the local memory. The main advantage of caching is that it improves the performance by reducing the processing burden.