nerdexam
Amazon

SAA-C03 · Question #582

A video game company is deploying a new gaming application to its global users. The company requires a solution that will provide near real-time reviews and rankings of the players. A solutions…

The correct answer is C. Deploy an Amazon ElastiCache for Redis duster. Store the player data in the ElastiCache cluster. Amazon ElastiCache for Redis provides in-memory caching which ensures low latency and high throughput, perfect for near real-time access to player reviews and rankings. Redis supports data persistence by snapshotting data to disk (RDB snapshots) and appending changes to a log…

Submitted by deeparc· Mar 4, 2026Design High-Performing Architectures

Question

A video game company is deploying a new gaming application to its global users. The company requires a solution that will provide near real-time reviews and rankings of the players. A solutions architect must design a solution to provide fast access to the data. The solution must also ensure the data persists on disks in the event that the company restarts the application. Which solution will meet these requirements with the LEAST operational overhead?

Options

  • AConfigure an Amazon CloudFront distribution with an Amazon S3 bucket as the origin. Store the
  • BCreate Amazon EC2 instances in multiple AWS Regions. Store the player data on the EC2
  • CDeploy an Amazon ElastiCache for Redis duster. Store the player data in the ElastiCache cluster.
  • DDeploy an Amazon ElastiCache for Memcached duster. Store the player data in the ElastiCache

How the community answered

(46 responses)
  • A
    2% (1)
  • B
    15% (7)
  • C
    74% (34)
  • D
    9% (4)

Explanation

Amazon ElastiCache for Redis provides in-memory caching which ensures low latency and high throughput, perfect for near real-time access to player reviews and rankings. Redis supports data persistence by snapshotting data to disk (RDB snapshots) and appending changes to a log (AOF), ensuring that the data is not lost even if the application restarts.

Community Discussion

No community discussion yet for this question.

Full SAA-C03 Practice