Aspire.StackExchange.Redis.OutputCaching 8.0.0-preview.6.24214.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Aspire.StackExchange.Redis.OutputCaching.
dotnet add package Aspire.StackExchange.Redis.OutputCaching --version 8.0.0-preview.6.24214.1
NuGet\Install-Package Aspire.StackExchange.Redis.OutputCaching -Version 8.0.0-preview.6.24214.1
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="Aspire.StackExchange.Redis.OutputCaching" Version="8.0.0-preview.6.24214.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspire.StackExchange.Redis.OutputCaching --version 8.0.0-preview.6.24214.1
#r "nuget: Aspire.StackExchange.Redis.OutputCaching, 8.0.0-preview.6.24214.1"
#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 Aspire.StackExchange.Redis.OutputCaching as a Cake Addin
#addin nuget:?package=Aspire.StackExchange.Redis.OutputCaching&version=8.0.0-preview.6.24214.1&prerelease

// Install Aspire.StackExchange.Redis.OutputCaching as a Cake Tool
#tool nuget:?package=Aspire.StackExchange.Redis.OutputCaching&version=8.0.0-preview.6.24214.1&prerelease

Aspire.StackExchange.Redis.OutputCaching library

Registers an ASP.NET Core Output Caching provider backed by a Redis®* server. Enables corresponding health check, logging, and telemetry.

Getting started

Prerequisites

  • Redis server and the server hostname for connecting a client.

Install the package

Install the .NET Aspire StackExchange Redis OutputCache library with NuGet:

dotnet add package Aspire.StackExchange.Redis.OutputCaching

Usage example

In the Program.cs file of your project, call the AddRedisOutputCache extension method to register the Redis output cache provider in the dependency injection container. The method takes a connection name parameter.

builder.AddRedisOutputCache("cache");

After the WebApplication has been built, add the middleware to the request processing pipeline by calling UseOutputCache.

app.UseOutputCache();

For minimal API apps, configure an endpoint to do caching by calling CacheOutput, or by applying the [OutputCache] attribute, as shown in the following examples:

app.MapGet("/cached", Gravatar.WriteGravatar).CacheOutput();
app.MapGet("/attribute", [OutputCache] (context) =>
    Gravatar.WriteGravatar(context));

For apps with controllers, apply the [OutputCache] attribute to the action method. For Razor Pages apps, apply the attribute to the Razor page class.

Configuration

The .NET Aspire StackExchange Redis OutputCache component provides multiple options to configure the Redis connection based on the requirements and conventions of your project. Note that at least one host name is required to connect.

Use a connection string

When using a connection string from the ConnectionStrings configuration section, you can provide the name of the connection string when calling builder.AddRedisOutputCache():

builder.AddRedisOutputCache("myRedisConnectionName");

And then the connection string will be retrieved from the ConnectionStrings configuration section:

{
  "ConnectionStrings": {
    "myRedisConnectionName": "localhost:6379"
  }
}

See the Basic Configuration Settings of the StackExchange.Redis docs for more information on how to format this connection string.

Use configuration providers

The Redis OutputCache component supports Microsoft.Extensions.Configuration. It loads the StackExchangeRedisSettings and ConfigurationOptions from configuration by using the Aspire:StackExchange:Redis key. Example appsettings.json that configures some of the options:

{
  "Aspire": {
    "StackExchange": {
      "Redis": {
        "ConfigurationOptions": {
          "ConnectTimeout": 3000,
          "ConnectRetry": 2
        },
        "HealthChecks": false,
        "Tracing": true
      }
    }
  }
}

Use inline delegates

You can also pass the Action<StackExchangeRedisSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:

builder.AddRedisOutputCache("cache", settings => settings.HealthChecks = false);

You can also setup the ConfigurationOptions using the Action<ConfigurationOptions> configureOptions delegate parameter of the AddRedisOutputCache method. For example to set the connection timeout:

builder.AddRedisOutputCache("cache", configureOptions: options => options.ConnectTimeout = 3000);

AppHost extensions

In your AppHost project, install the Aspire.Hosting.Redis library with NuGet:

dotnet add package Aspire.Hosting.Redis

Then, in the Program.cs file of AppHost, register a Redis server and consume the connection using the following methods:

var redis = builder.AddRedis("cache");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(redis);

The WithReference method configures a connection in the MyService project named cache. In the Program.cs file of MyService, the redis connection can be consumed using:

builder.AddRedisOutputCache("cache");

Additional documentation

Feedback & contributing

https://github.com/dotnet/aspire

*Redis is a registered trademark of Redis Ltd. Any rights therein are reserved to Redis Ltd.

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 (2)

Showing the top 2 popular GitHub repositories that depend on Aspire.StackExchange.Redis.OutputCaching:

Repository Stars
dotnet/aspire
An opinionated, cloud ready stack for building observable, production ready, distributed applications in .NET
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
Version Downloads Last updated
8.0.0-preview.6.24214.1 1,050 4/23/2024
8.0.0-preview.5.24201.12 2,185 4/9/2024
8.0.0-preview.4.24156.9 4,824 3/12/2024
8.0.0-preview.3.24105.21 3,946 2/13/2024
8.0.0-preview.2.23619.3 4,778 12/20/2023
8.0.0-preview.1.23557.2 6,166 11/14/2023