🎴 Flashcard Mode
ASP.NET Programming Fundamentals
Card1 / 19
Mastered0
Review0
QuestionClick to flip
You are the developer of a web application that is retrieving historical books information from a database server and displays it to the users of your application. What cache strategy will give you the best performance ?
AnswerClick to flip back
A
Use the output cache
💡 Explanation:
Output caching stores the complete rendered page HTML, eliminating redundant database queries and page processing for historical book data that rarely changes. This server-side strategy is ideal for read-heavy data display scenarios. The Cache object requires manual implementation, client caching depends on browser settings, and ASP.NET central cache is not a standard feature.