What is caching?
(The answer is not “An in-memory database”.
A cache contains partial data, and is not considered a database.)
Which types of data should you cache?
What is a benefit of caching?
What does Amazon CloudFront enable?
How does Amazon CloudFront use edge locations?
(The answer is not, “ It caches local content at edge locations. It delivers the cached content to clients through the edge location that requires the fewest network hops to reach those clients.”
Although having fewer hops, often results in lower latency, it is not always true. Latency, not network hops, determines the nearest edge location.)
Where is application session data cached when using sticky sessions?
Which statement best describes an efficient way to deliver on-demand streaming content by using Amazon CloudFront?
(First create video segments with an encoder and store them in Amazon S3, which is the origin for CloudFront. Then, create distributions for the video content, which CloudFront can cache. This method is the most operationally efficient.)
( The answer is not “ A best practice is to create separate origin servers for each Region where you serve streaming content.”
This architecture would be difficult to maintain and is not necessary when you use CloudFront.)
What is Amazon DynamoDB Accelerator (DAX)?
How can an application use Amazon ElastiCache to improve database read performance? (Select TWO.)
(Writing data to the cache only when a cache miss occurs is called lazy loading. Writing data to the cache every time that the application writes data to the database is called write-through.)
(The answer is not a combination of:
“ Read data from the datbase first and write the most frequently read data to ElastiCache hen a cache miss occurs” and
“ Direct all read requests to the database and configure it to read from Elasticache when a cache miss occurs.”
An application that always reads from the database first is not using the cache. The application must fetch the data from the database when a cache miss occurs. Offloading all read requests to a replica of a database is the job of the read replica.)
Which role does Amazon CloudFront play in protecting against distributed denial of service (DDoS) attacks?
(The correct answer is not “Controls traffic by the source IP address of requests”.
This action is a function of AWS WAF. It can be used together with CloudFront and Amazon Route 53 to help stop DDoS attacks.)