SOA-C02 · Question #716
SOA-C02 Question #716: Real Exam Question with Answer & Explanation
The correct answer is D: Change the eviction policy to evict the least frequently used keys.. Switching the eviction policy to least frequently used (LFU) evicts the keys with the lowest access counts first, keeping popular (high-hit) items in memory and boosting the hit ratio - without adding cost or just extending TTLs.
Question
An ecommerce company uses an Amazon ElastiCache (Redis OSS) cluster for in-memory caching of popular product queries on a shopping website. The cache eviction policy is randomly evicting keys whether or not a TTL is set. A SysOps administrator must improve the cache hit ratio without increasing costs. Which solution will meet these requirements?
Options
- AAdd another node to the ElastiCache cluster.
- BIncrease the ElastiCache TTL value.
- CChange the eviction policy to randomly evict keys that have a TTL set.
- DChange the eviction policy to evict the least frequently used keys.
Explanation
Switching the eviction policy to least frequently used (LFU) evicts the keys with the lowest access counts first, keeping popular (high-hit) items in memory and boosting the hit ratio - without adding cost or just extending TTLs.
Community Discussion
No community discussion yet for this question.