Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
page_type languages name description products
sample
aspx-csharp
csharp
Quickstart: Use Azure Cache for Redis with an ASP.NET web app
Learn how to use an ASP.NET web application to connect to Azure Cache for Redis to store and retrieve data from the cache.
azure
aspnet
azure-cache-redis

Quickstart: Use Azure Cache for Redis with an ASP.NET web app

This sample shows you how to use an ASP.NET web application to connect to Azure Cache for Redis to store and retrieve data from the cache. See the accompanying article on the documentation site for details, including best practices and how to create the sample code from scratch.

Prerequisites

Set up the working environment

Create a file on your computer named CacheSecrets.config and place it in a location where it won't be checked in with the source code of your sample application. For this quickstart, the CacheSecrets.config file is located here, C:\AppSecrets\CacheSecrets.config.

Edit the CacheSecrets.config file and add the following contents:

<appSettings>
    <add key="CacheConnection" value="<cache-name>.redis.cache.windows.net,abortConnect=false,ssl=true,allowAdmin=true,password=<access-key>"/>
</appSettings>

Replace <cache-name> with your cache host name.

Replace <access-key> with the primary key for your cache.

Run the sample locally

Download the sample code to your development PC.

In Visual Studio, click File > Open > Project/Solution.

Navigate to the folder containing this sample, and select the solution file contained within it.

Open Tools > NuGet Package Manager > Package Manager Console and install the bootstrap NuGet package:

Install-Package bootstrap -Version 3.4.1

If the CacheSecrets.config file is not located at C:\AppSecrets\CacheSecrets.config, open your web.config file and update the appSettings file attribute to the correct path.

In Visual Studio, select Debug > Start Debugging to build and start the app locally for testing and debugging.

In the browser, select Azure Cache for Redis Test on the navigation bar.

Publish and run in Azure

See the accompanying article on the documentation site for details about how to publish and run the app in Azure.

References