UmbracoOutputCache 13.0.0

dotnet add package UmbracoOutputCache --version 13.0.0
NuGet\Install-Package UmbracoOutputCache -Version 13.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UmbracoOutputCache" Version="13.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UmbracoOutputCache --version 13.0.0
#r "nuget: UmbracoOutputCache, 13.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install UmbracoOutputCache as a Cake Addin
#addin nuget:?package=UmbracoOutputCache&version=13.0.0

// Install UmbracoOutputCache as a Cake Tool
#tool nuget:?package=UmbracoOutputCache&version=13.0.0

What does this package do?

Output caching has been introduced in ASP.NET Core 7.0, which means you need to be on at least version 11 of Umbraco. This package caches all your server side code like the output of your razor templates so that it is not executed over and over again as you get more concurrent visitors but will be cached for the duration you set, by default this package sets it to 10 seconds. This should help improve the performance of your Umbraco server bringing down CPU utilization etc.

CacheLifeSpanInSeconds

The default CacheLifeSpanInSeconds is 10 seconds, this can be modified using the Advanced setup procedure. Its important to note that content changes in the backoffice will reset the cache, so that published changes are available instantly.

Simple setup procedure

Just install the package, and your default RenderController will have OutputCache enabled with a 10 seconds cache interval, which means you get OutputCaching enabled by just installing the package.

Advanced setup procedure

The appsettings.json file can be used to change the OutputCache LifeSpanInSeconds from the default 10 seconds to E.g. 5 seconds as shown below

{
	"OutputCacheSettings":
	{
		"CacheLifeSpanInSeconds": 5
	}
}

Hardcore setup procedure

Since this package is open source, feel free to reference the source code and build your own OutputCache mechanisms without having to install this package.

For more details on how to configure your own default RenderController check the official Umbraco documentaion

Want to sponsor?

This is a free package, but if you want to sponsor my open source work, here is my GitHub profile

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.0.0 245 12/16/2023
12.0.0 256 7/1/2023
11.2.2 803 1/31/2023
11.2.1 294 1/31/2023
11.2.0 262 1/30/2023
11.1.10 276 1/29/2023
11.1.9 264 1/29/2023
11.1.8 282 1/21/2023
11.1.7 279 1/20/2023
11.1.6 252 1/20/2023
11.1.5 252 1/20/2023
11.1.4 268 1/20/2023
11.1.3 299 1/17/2023
11.1.2 271 1/17/2023
11.1.1 269 1/17/2023
11.1.0 285 1/15/2023
1.1.1 274 1/15/2023
1.0.0 272 1/15/2023