ASP.NET Core Application With NCache Response Caching

Introduction

Distribute cache plays a major role in optimizing the application's performance by caching the data in memory and reducing the database trips. In simple word, caching refers to storing the result of an operation so that future request returns faster. 

When do we cache? 

  1. When the computation is slow. 
  2. Computation will run multiple times. 
  3. When the output is the same for a particular input, we know we don't have to recompute it every time because it will be the same result. 
  4. When your hosting provider charges for DB access. For example, the Google APP engine gives you a fixed number of reads and writes to the data store on a particular day, and if you go over that, you have to pay for it, even if the website doesn't get a lot of traffic. In this case, you can cache the response and reduce the unnecessary server hits, by this way, you can save some money.

What is NCache? 

NCache is an Open Source in-memory distributed cache for .NET, Java, and Node.js. NCache is extremely fast and linearly scalable and caches application data to reduce expensive database trips. Use NCache to remove performance bottlenecks related to your data storage and databases and scale your .NET, Java, and Node.js applications to extreme transaction processing (XTP).

Get started with NCache here. Please go through the installation process of NCache. 

What is response caching? 

Response caching will cache the server responses of a request so that subsequent requests can access the data from the cache instead of hitting a server. For example, assume we have a country and state cascading dropdown list in our web form, so based on the country selection, the request will pass to the server, and we use to get a respective state list. In this case, the country and state data will never change frequently, so it is unnecessary to make country and state request to the server whenever the web form loads. Initially, we can save the response in the cache, and for consecutive calls, instead of hitting the server we can get a saved response from a cache. We can cache any response from the HTTP request, it can be XML, Text, JSON, or HTML. We will get complete control on the cached response using the cache-control property. For example, if cache-control: max-age=45 implies that the server response is valid for a period of 45 seconds. 

In this article, I will demonstrate how we can optimize the performance of our ASP.NET Core web application using Distributed NCache with response Caching. 

There are different ways to cache the response. 

  1. In-memory 
  2. Response cache via HTTP Header 
  3. Distributed Caching 

1. In-Memory

In this approach, the response content will be cached in-memory on the server-side and served for all subsequent calls. We can use built-in <cache> tags to define the section of the views to be cached.

Since the content is cached in-memory, it will be cleared on the application restarts. 

2. Response cache via HTTP Header 

In this approach, the response content is cached in the browser's end. It can reduce the server hits because the subsequent calls are served by the browser cache.

3. Distributed Caching 

In this approach, the response cache is distributed across several servers in a web farm that is external to an application. For subsequent calls, any server can be responded. NCache provides a powerful distributed cache service to implement this approach, which will improve the application's performance by reducing the server hits. 

NCache as a response caching middleware

NCache is one of the best response caching middleware for .NET web applications, providing the following benefits as a distributed cache. 

  1. 100% .NET – It is a distributed cache in the market that is completely built with .NET. 
  2. Fast and Scalable – It is fast since it uses an in-memory distributed cache. We can scale it linearly, so NCache will be a great choice when we experience performance challenges in our ASP.NET Core application during high traffic. 
  3. High Availability – It supports peer clustering architecture, so there is no data loss when the cache server is down. 

Read more about NCache features here

Creating a new ASP.NET Core MVC application 

Step 1

Open Visual Studio IDE 

Step 2

Select, create a new project -> choose ASP.NET Core Web Application template and click on next. 

ASP.NET Core application with NCache Response caching

Step 3

Give the project name and the location, and click on Create 

Step 4

Select .NET 6.0 framework and click on create. 

ASP.NET Core application with NCache Response caching

To use NCache as a distributed cache for response caching, we need to install the below package using NuGet Package manager in our newly created web project. Installing the latest stable release to get the latest features is highly recommended. One more note: the version of the response cache package matches the version of the NCache installation being used. I'm using NCache 5.3 for the demo. 

NCache.Microsoft.Extensions.Caching 

Open program.cs file after installing the package 

Add the below statement to the program.cs file to register the NCache as a distributed caching service. 

builder.Services.AddResponseCaching();
builder.Services.AddNCacheDistributedCache(builder.Configuration.GetSection("NCacheSettings"));

In ASP.NET Core, the response caching middleware is implicitly available and built-in. AddResponseCaching() will add the middleware to the request in the pipeline. NCache act as distributed cache service provider for response caching middleware. The AddNCacheDistributedCache method is used to define NCache as a response cache middleware. 

Add the below statement to invoke the response cache

app.UseResponseCaching(); 

Open appsettings.json to define the cache configuration settings 

"NCacheSettings": {
    "CacheName": "[SpecifytheCacheNameHere]",
    "EnableLogs": "True",
    "RequestTimeout": "60"
}

In my case, the local cache name is demoLocalCache.

ASP.NET Core application with NCache Response caching

Distributed Cache Tag helper 

Distributed Cache tag helper from ASP.NET Core is used to cache specific content from your web page. Now we have configured NCache for response caching, so the content is cached in the distributed cache of NCache defined in NCacheSettings of appsetting.Json file.

For example, the below statement <distributed-cache> tag will be used to cache the current date and time and will stay in the cache forever. 

<distributed-cache name="Key:DateTime" >
    <div>@DateTime.Now.ToString()</div>
</distributed-cache>

We can set the expiry time for a cached item using an expires-after attribute, as given in the below statement. 

<distributed-cache name="Key:DateTimeWithExpiry" expires-after="TimeSpan.FromSeconds(300)">
    <div style=" color:green">@DateTime.Now.ToString()</div><br />
</distributed-cache>

Finally, I have added some content to Index.cshtml page with distributed-cache

<div class="text-center">
  <h1 class="display-4">Welcome</h1>
  <p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>. </p>
  <distributed-cache name="Key:DateTime">
    <div style=" color:red">@DateTime.Now.ToString()</div>
  </distributed-cache>
  <distributed-cache name="Key:DateTimeWithExpiry" expires-after="TimeSpan.FromSeconds(300)">
    <div style=" color:green">@DateTime.Now.ToString()</div>
    <br />
  </distributed-cache>
  <distributed-cache name="Key:ImgWithNoExpiry">
    <img src="QDHM5486.JPG" height="400" width="400" />
  </distributed-cache>
</div>

Run the application, and check the statistics of the local cache 

ASP.NET Core application with NCache Response caching

The statistics show that the application is connected with Local NCache Server with the client(s) count as 1 and stored 3 values, so the count is 3. 

ASP.NET Core application with NCache Response caching

Summary

We have seen what response cache is and how the distribute cache can be used for response cache to improve the performance of the web application. Response cache is a technique that caches the web page's content served from the server. ASP.NET Core supports response caching middleware to enable response caching for our web application. Finally, we went into distributed caching for response content and the NCache as a service provider with high availability and scaling. In my future article, we will see some of the advanced features like database dependency and Cache Invalidation from NCache response caching.

Download source code


Similar Articles