Logo
Grokking System Design Fundamentals
Ask Author
Back to course home

0% completed

Cache Read Strategies

Here are the two famous cache read strategies:

Read through cache

A read-through cache strategy is a caching mechanism where the cache itself is responsible for retrieving the data from the underlying data store when a cache miss occurs. In this strategy, the application requests data from the cache instead of the data store directly. If the requested data is not found in the cache (cache miss), the cache retrieves the data from the data store, updates the cache with the retrieved data, and returns the data to the application.

.....

.....

.....

Like the course? Get enrolled and start learning!