AD0-E136 · Question #66
When designing caching strategies, which factor is most critical?
The correct answer is B. Frequency of content updates. Frequency of content updates (B) is the most critical caching factor because caching only delivers value when cached data remains valid long enough to be reused - if content changes constantly, stale cache entries cause incorrect responses, and if content rarely changes…
Question
When designing caching strategies, which factor is most critical?
Options
- AUser access permissions
- BFrequency of content updates
- CNumber of content authors in the system
- DContent taxonomy structure
How the community answered
(44 responses)- A14% (6)
- B75% (33)
- C5% (2)
- D7% (3)
Explanation
Frequency of content updates (B) is the most critical caching factor because caching only delivers value when cached data remains valid long enough to be reused - if content changes constantly, stale cache entries cause incorrect responses, and if content rarely changes, aggressive caching yields massive performance gains. User access permissions (A) are handled by authorization layers, not cache design itself (though they may influence what gets cached). The number of content authors (C) is irrelevant - what matters is how often the content changes, not who changes it. Content taxonomy (D) might inform cache key organization, but it doesn't determine the fundamental caching strategy.
Memory tip: Think "cache = freeze" - you only freeze food that won't spoil quickly. Ask yourself "how fast does this data expire?" and you'll always land on update frequency as the core concern.
Topics
Community Discussion
No community discussion yet for this question.