A company uses Amazon ElastiCache for Redis. They want to monitor cache hit ratio. Which TWO metrics should be used to calculate the cache hit ratio?
Number of successful key lookups.
Why this answer
Options A and C are correct. Cache hit ratio = CacheHits / (CacheHits + CacheMisses). CurItems is for memory usage, Evictions is for memory pressure, and GetTypeCmds is total get commands.