Question 369:
One of your clients has a web application hosted on-prem and has recently migrated its database service to DynamoDB. The application receives more than 1000 read requests per second compared to 200 write requests every second. The client has asked you to implement a caching mechanism to speed up the read requests and save costs on RCUs. What changes are needed to make it work?
Answer options:
A.Create an ElastiCache redis cluster and configure your application to write the most frequently accessed data to redis for faster read queries. B.Place DynamoDB accelerator in front of the database to cache frequently accessed data. C.Place an ElastiCache Memcached cluster in front of DynamoDB to cache the requests. D.None of the above.