Topic 1 Question 444
A developer is creating a database of products. Queries for frequently accessed products must have retrieval times of microseconds. To ensure data consistency, the application cache must be updated whenever products are added, changed, or deleted.
Which solution will meet these requirements?
Set up an Amazon DynamoDB database and a DynamoDB Accelerator (DAX) cluster.
Set up an Amazon RDS database and an Amazon ElastiCache for Redis cluster. Implement a lazy loading caching strategy with ElastiCache.
Setup an Amazon DynamoDB database that has an in-memory cache. Implement a lazy loading caching strategy in the application.
Set up an Amazon RDS database and an Amazon DynamoDB Accelerator (DAX) cluster. Specify a TTL setting for the DAX cluster.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: A
DAX is a fully managed, in-memory caching service for DynamoDB that provides fast read performance (typically in microseconds). DAX is designed specifically to be used with DynamoDB, which makes it ideal for your use case where quick retrieval of frequently accessed products is essential.
👍 1gdm832024/10/19 A is the correct answer. https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.html
👍 1ogogundare2024/11/03
シャッフルモード