Skip to content

Files

Latest commit

b7f9cd2 · Mar 19, 2025

History

History
21 lines (17 loc) · 1.36 KB

Readme.md

File metadata and controls

21 lines (17 loc) · 1.36 KB

Introduction

OutputCacheModule is ASP.NET’s default handler for storing the generated output of pages, controls, and HTTP responses. This content can then be reused when appropriate to improve performance. Prior to the .NET Framework 4.6.2, the OutputCache Module did not support async read/write to the storage. You can find more details on this blog post.

Key Benefits

  • Asynchronous operations for improved scalability
  • Better performance in high-traffic applications
  • Multiple storage provider options (SQL Server, Azure Cosmos DB)
  • Compatible with existing ASP.NET output cache APIs

How to build

  1. Open a VS developer command prompt
  2. Run build.cmd. This will build Nuget packages and run all the unit tests.
  3. All the build artifacts will be under AspNetOutputCache\bin\Release\ folder.

How to contribute

Information on contributing to this repo is in the Contributing Guide.

The Following Packages Are Built In This Repo