Multiple choice technology programming languages

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 ?

  1. Use the output cache

  2. Use the cache object

  3. Use the ASP.NET central cache

  4. Use the client cache

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Output caching stores the fully rendered HTML page, completely avoiding database queries and server-side page processing on subsequent requests. The cache object (data caching) still requires page rendering overhead, while ASP.NET central cache is not a standard term.