Basic Strategies

Caching strategies are the most powerful features of PWAs, and they can deliver huge improvements to our web applications.


Benefits of caching strategies

There are different caching strategies we can adopt to improve the performance of our project.

If a data request is cached, we can deliver it without needing to access the network. This brings the following advantages: on one side, the response is much faster. Conversely, we can provide the data even when the client is offline because we already have it available locally. We cover further advantages in this lesson.

It is essential to note that we must instruct the ...