ZetCode

ASP.NET OutputCache

last modified April 3, 2025

In this article, we explore the OutputCache feature in ASP.NET 8. This powerful caching mechanism improves application performance by storing page output.

ASP.NET is a cross-platform, high-performance framework for building modern web applications. OutputCache reduces server load by serving cached content.

Basic Definition

OutputCache in ASP.NET stores the rendered output of pages or user controls. When subsequent requests arrive, cached content is served instead of reprocessing.

This significantly improves response times and reduces server resource usage. It's particularly useful for content that changes infrequently but is requested often.

OutputCache can be configured at different levels: page, control, or action. It supports various cache locations: server, client, or both. Cache duration is configurable in seconds.

ASP.NET OutputCache Example

The following example demonstrates using OutputCache in an ASP.NET Core MVC application. We'll cache a product listing page for 60 seconds.

Program.cs
var builder = WebApplication.CreateBuilder(args);

builder.Services.AddControllersWithViews();
builder.Services.AddOutputCache(options =>
{
    options.AddPolicy("ProductCache", builder => 
    {
        builder.Expire(TimeSpan.FromSeconds(60));
        builder.SetVaryByQuery("category");
    });
});

var app = builder.Build();

app.UseOutputCache();
app.MapControllerRoute(
    name: "default",
    pattern: "{controller=Home}/{action=Index}/{id?}");

app.Run();

This sets up the OutputCache middleware with a custom cache policy. The policy defines a 60-second expiration and varies cache by the "category" query parameter.

Controllers/ProductsController.cs
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.OutputCaching;

public class ProductsController : Controller
{
    private static List<Product> _products = new()
    {
        new Product(1, "Laptop", "Electronics"),
        new Product(2, "Chair", "Furniture"),
        new Product(3, "Smartphone", "Electronics"),
        new Product(4, "Table", "Furniture")
    };

    [OutputCache(PolicyName = "ProductCache")]
    public IActionResult Index(string category)
    {
        var filteredProducts = string.IsNullOrEmpty(category) 
            ? _products 
            : _products.Where(p => p.Category == category).ToList();
            
        ViewBag.LastGenerated = DateTime.Now.ToString("HH:mm:ss");
        return View(filteredProducts);
    }
}

public record Product(int Id, string Name, string Category);

The controller action is decorated with the OutputCache attribute using our "ProductCache" policy. The action filters products by category if provided.

Views/Products/Index.cshtml
@model List<Product>

<h2>Product List</h2>
<p>Last generated: @ViewBag.LastGenerated</p>

<div class="categories">
    <a href="/Products">All</a>
    <a href="/Products?category=Electronics">Electronics</a>
    <a href="/Products?category=Furniture">Furniture</a>
</div>

<ul>
@foreach (var product in Model)
{
    <li>@product.Name - @product.Category</li>
}
</ul>

The view displays the product list along with the generation time. The time stamp helps verify caching is working (it won't change during cache duration).

When you run this application and navigate to /Products, the page will be cached for 60 seconds. The cache will store separate versions for different categories.

OutputCache significantly improves performance for frequently accessed pages. The example shows how to implement basic caching with varying by query parameters.

Source

Microsoft ASP.NET OutputCache Documentation

In this article, we have explored the OutputCache feature in ASP.NET 8. This powerful caching mechanism can dramatically improve application performance.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all ASP.NET tutorials.