AWS

What patterns are there for loading data into the cache?

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

  • Write Through: add or update data in the cache when the data is written to the DB
  • Lazy Loading: all the read data is cached
  • Session Store: store temporary session data in cache