Cache Aside
Cache aside is a read pattern
Loading...
This pattern is recommended for scalability because when there are multiple databases, the application should have the control to know which database to fetch.
Pros:
- Works with multi-instances of application, database or cache
Cons: - Manually code up the logic for updating the cache in application