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.
Loading...
Related Quiz
- How does filter ordering affect the processing of requests and responses in a servlet application?
- What is a common practice to reduce the load on a servlet?
- How can filters modify the request and response objects in a filter chain?
- How do you specify the URL patterns to which a filter should apply?
- Describe the steps for setting up a custom error page for a specific type of exception in a servlet application.