Question 7 of 10Pro Only
What caching strategies would you use to improve application performance, and how do you handle cache invalidation?
Sample answer preview
Caching stores frequently accessed data in faster storage to reduce load on backend systems and improve response times. Different strategies suit different scenarios. Cache-aside, also called lazy loading, is the most common pattern. The application first checks the cache.
cache-asidewrite-throughwrite-behindTTLcache invalidationevent-based