In a Cache-Aside strategy, when is the data loaded into the cache?

  • Data is loaded into the cache on write operations.
  • Data is loaded into the cache on read operations.
  • Data is automatically loaded when the cache is initialized.
  • Data is loaded into the cache periodically on a fixed schedule.
In a Cache-Aside strategy, data is not automatically loaded into the cache. Instead, it's loaded explicitly on read operations when an application requests the data.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *