Skip to content

Latest commit

 

History

History
157 lines (92 loc) · 9.53 KB

azure-cache-for-redis-add-connected-service.md

File metadata and controls

157 lines (92 loc) · 9.53 KB
title description author manager ms.subservice ms.topic ms.date ms.author monikerRange
Add Azure Cache for Redis by using Connected Services
Learn how to add Azure Cache for Redis support to your app with the Visual Studio process for adding a connected service.
AngelosP
mijacobs
azure-development
conceptual
05/15/2023
angelpe
>= vs-2019

Add Azure Cache for Redis by using Visual Studio Connected Services

With Visual Studio, you can connect any of the following to Azure Cache for Redis by using the Connected Services feature:

  • .NET Framework console app
  • ASP.NET Model-View-Controller (MVC) (.NET Framework)
  • ASP.NET Core
  • .NET Core (including console app, WPF, Windows Forms, class library)
  • .NET Core Worker Role
  • Azure Functions
  • Universal Windows Platform App
  • Xamarin
  • Cordova

The connected service functionality adds all the needed references and connection code to your project, and modifies your configuration files appropriately.

Note

This topic applies to Visual Studio on Windows. For Visual Studio for Mac, see Connected services in Visual Studio for Mac.

Prerequisites

Connect to Azure Cache for Redis using Connected Services

:::moniker range="vs-2019"

  1. Open your project in Visual Studio.

  2. In Solution Explorer, right-click the Connected Services node, and, from the context menu, select Add Connected Service.

  3. In the Connected Services tab, select the + icon for Service Dependencies.

    Screenshot showing connected services selected in the menu pane. The + icon is highlighted for emphasis.

  4. In the Add Dependency page, select Azure Cache for Redis.

    Screenshot of the Add Dependency page. Azure Cache for Redis is selected.

    If you aren't signed in already, sign in to your Azure account. If you don't have an Azure account, you can sign up for a free trial.

  5. In the Configure Azure Cache for Redis screen, select an existing Azure Cache for Redis, and select Next.

    If you need to create a new component, go to the next step. Otherwise, skip to step 7.

    Screenshot of the Configure Azure Cache for Redis screen. Next is highlighted.

  6. To create an Azure Cache for Redis:

    1. Select Create a new Azure Redis Cache at the bottom of the screen.

    2. Fill out the Azure Cache for Redis: Create new screen, and select Create.

      Screenshot of the Azure Cache for Redis create new page. Create is highlighted.

    3. When the Configure Azure Cache for Redis screen is displayed, the new cache appears in the list. Select the new database in the list, and select Next.

  7. Enter a connection string name, or choose the default, and choose whether you want the connection string stored in a local secrets file, or in Azure Key Vault.

    Screenshot of the Azure Cache for Redis connection information page. Next is highlighted.

  8. The Summary of changes screen shows all the modifications that will be made to your project if you complete the process. If the changes look OK, choose Finish.

    Screenshot of the Summary of changes page. Finish is highlighted.

  9. The connection appears under the Service Dependencies section of the Connected Services tab.

    Screenshot showing a list of configured service dependencies. :::moniker-end

:::moniker range=">=vs-2022"

Note

For .NET Framework projects, Connected Services UI is slightly different. To see the differences, compare to the Visual Studio 2019 version of this page.

  1. Open your project in Visual Studio.

  2. In Solution Explorer, right-click the Connected Services node, and, from the context menu, select Add to open the menu of available services.

    Screenshot showing Connected Services context menu options.

  3. Choose Azure Cache for Redis. The Connect to dependency page appears. You should see two options, one for a local emulator, Redis Cache on container (Local), and one for connecting to the live Azure Cache for Redis service. You can reduce cost and simplify early development by starting with the local emulator. You can migrate to the live service later by repeating these steps and choosing the other option.

    Screenshot showing Azure Cache for Redis choices

    If you choose the Azure Cache for Redis locally, click Next to the Connect to Redis cache on container screen.

    Screenshot showing connection options for Azure Cache for Redis in a local container.

    Specify Container name, Container image, and port mappings or accept the defaults, and click Next to see the Summary of changes screen, which shows what changes would be made to your project. A NuGet package reference is added to your project and the connection code for the local emulator is added to your project.

    If you want to connect to the Azure service, continue to the next step, or if you aren't signed in already, sign in to your Azure account before continuing. If you don't have an Azure account, you can sign up for a free trial.

  4. To go with the live service, select Azure Cache for Redis.

    Screenshot of the Add Dependency page. Azure Cache for Redis is selected.

    If you aren't signed in already, sign in to your Azure account. If you don't have an Azure account, you can sign up for a free trial.

  5. In the Configure Azure Cache for Redis screen, select an existing Azure Cache for Redis, and select Next.

    If you need to create a new component, go to the next step. Otherwise, skip to step 7.

    Screenshot of the Configure Azure Cache for Redis screen. Next is highlighted.

  6. To create an Azure Cache for Redis:

    1. Select Create a new Azure Redis Cache at the bottom of the screen.

    2. Fill out the Azure Cache for Redis: Create new screen, and select Create.

      Screenshot of the Azure Cache for Redis create new page. Create is highlighted.

    3. When the Configure Azure Cache for Redis screen is displayed, the new cache appears in the list. Select the new database in the list, and select Next.

  7. Enter a connection string name, or choose the default, and choose whether you want the connection string stored in a local secrets file, or in Azure Key Vault.

    Screenshot of the Azure Cache for Redis connection information page. Next is highlighted.

  8. The Summary of changes screen shows all the modifications that will be made to your project if you complete the process. If the changes look OK, choose Finish.

    Screenshot of the Summary of changes page. Finish is highlighted.

  9. In Solution Explorer, double-click on the Connected Services node to open the Connected Services tab. The connection appears under the Service Dependencies section:

    Screenshot showing a list of configured service dependencies.

    If you click on the three dots next to the dependency you added, you can see various options such as Connect to reopen the wizard and change the connection. You can also click the three dots at the top right of the window to see options to start local dependencies, change settings, and more.

:::moniker-end

Next steps

For ASP.NET apps, common use cases for Azure Cache for Redis are to cache session state or page output (HTTP responses). ASP.NET Core provides built-in services for these use cases, which should be used instead when you're using ASP.NET Core.

To cache session state in an ASP.NET app, see ASP.NET Session State Provider.

To cache page output in an ASP.NET app, see ASP.NET Output Cache Provider.

Related content