Problem
How to use distributed caching and Redis in ASP.NET Core.
Solution
Starting from an empty project, add Redis Services in ConfigureServices() method of Startup.
- public void ConfigureServices(
- IServiceCollection services)
- {
- services.AddDistributedRedisCache(options =>
- {
- options.Configuration = "...";
- });
- }
Create utility methods to set/get typed objects from the cache.
- public static class CachingExtensions
- {
- public static async Task SetObjectAsync(
- this IDistributedCache cache, string key, T value)
- {
- await cache.SetStringAsync(key, JsonConvert.SerializeObject(value));
- }
-
- public static async Task GetObjectAsync(
- this IDistributedCache cache, string key)
- {
- var value = await cache.GetStringAsync(key);
- return value == null ? default(T) :
- JsonConvert.DeserializeObject(value);
- }
- }
Create a middleware to write to the cache.
- public class WriteCachingMiddleware
- {
- private readonly RequestDelegate next;
- private readonly IDistributedCache cache;
-
- public WriteCachingMiddleware(
- RequestDelegate next,
- IDistributedCache cache)
- {
- this.next = next;
- this.cache = cache;
- }
-
- public async Task Invoke(HttpContext context)
- {
- await cache.SetObjectAsync("CurrentUser",
- new UserInfo { Username = "James", Email = "[email protected]" });
- await this.next(context);
- }
- }
Create a middleware to read from the cache.
- public class ReadCachingMiddleware
- {
- private readonly RequestDelegate next;
- private readonly IDistributedCache cache;
-
- public ReadCachingMiddleware(
- RequestDelegate next,
- IDistributedCache cache)
- {
- this.next = next;
- this.cache = cache;
- }
-
- public async Task Invoke(HttpContext context)
- {
- var user = await cache.GetObjectAsync("CurrentUser");
- await context.Response.WriteAsync($"{user.Username}, {user.Email}");
- }
- }
Discussion
Caching the frequently-used data can improve the performance of a web application. For applications hosted on multiple servers, using distributed caching means the application can access the data regardless of the instance server. Caching should be considered an alternate to using Session State.
ASP.NET Core provides an abstraction over the distributed caching so that regardless of where the cache is physically stored (Redis, SQL), developers can interact using a uniform API. This interface is IDistributedCache and provides methods to set, get and remove cache data. Notice that it can be injected as dependency in your middleware, controllers etc.
The set/get methods of IDistributedCache work with byte[] but the framework also provides extension methods to work with string values. These extension methods use Encoding.UTF8.GetBytes() and Encoding.UTF8.GetString() behind the scenes.
You could write your own extension methods to work with other strongly typed objects, as the above solution demonstrates.
I recommend considering Azure Redis Cache; it is really simple to set up and provides a lot of useful analytics to monitor the usage.
Source Code
GitHub