nerdexam
Amazon

DVA-C02 · Question #141

A developer is integrating Amazon ElastiCache in an application. The cache will store data from a database. The cached data must populate real-time dashboards. Which caching strategy will meet these…

The correct answer is D. A write-through cache. The best caching strategy for populating real-time dashboards using Amazon ElastiCache would be a write-through caching strategy. In this strategy, when new data is written to the database, it is also written to the cache. This ensures that the most current data is always…

Submitted by femi9· Mar 5, 2026Development with AWS Services

Question

A developer is integrating Amazon ElastiCache in an application. The cache will store data from a database. The cached data must populate real-time dashboards. Which caching strategy will meet these requirements?

Options

  • AA read-through cache
  • BA write-behind cache
  • CA lazy-loading cache
  • DA write-through cache

How the community answered

(53 responses)
  • A
    4% (2)
  • B
    9% (5)
  • C
    11% (6)
  • D
    75% (40)

Explanation

The best caching strategy for populating real-time dashboards using Amazon ElastiCache would be a write-through caching strategy. In this strategy, when new data is written to the database, it is also written to the cache. This ensures that the most current data is always available in the cache for the real-time dashboards to access, reducing the latency of the data retrieval. Additionally, using a write-through cache ensures that data consistency is maintained between the database and the cache, as any changes to the data are written to both locations

Community Discussion

No community discussion yet for this question.

Full DVA-C02 Practice