A high-traffic website uses a cache that frequently encounters 'cache churn'. What strategy can be used to minimize this effect?

  • Bloom Filters
  • Cache Sharding
  • Least Recently Used (LRU) Caching
  • Write-Behind Caching
Using Least Recently Used (LRU) caching strategy helps minimize cache churn by retaining frequently used items in the cache and discarding the least recently used ones, optimizing cache efficiency for a high-traffic website.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *