From 39b587bd792a3087c3eac42482fb06c21241ab63 Mon Sep 17 00:00:00 2001 From: Mohsin Nasir Date: Fri, 24 Jan 2020 18:15:13 +0500 Subject: [PATCH] NCache as IDistributedCache thirdparty implementation (#16692) --- .../tag-helpers/built-in/distributed-cache-tag-helper.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/distributed-cache-tag-helper.md b/aspnetcore/mvc/views/tag-helpers/built-in/distributed-cache-tag-helper.md index a3e282ffd6..9202c793e6 100644 --- a/aspnetcore/mvc/views/tag-helpers/built-in/distributed-cache-tag-helper.md +++ b/aspnetcore/mvc/views/tag-helpers/built-in/distributed-cache-tag-helper.md @@ -4,7 +4,7 @@ author: pkellner description: Learn how to use the Distributed Cache Tag Helper. ms.author: riande ms.custom: mvc -ms.date: 10/10/2018 +ms.date: 01/24/2020 uid: mvc/views/tag-helpers/builtin-th/distributed-cache-tag-helper --- # Distributed Cache Tag Helper in ASP.NET Core @@ -54,7 +54,7 @@ Example: ## Distributed Cache Tag Helper IDistributedCache implementations -There are two implementations of built in to ASP.NET Core. One is based on SQL Server, and the other is based on Redis. Details of these implementations can be found at . Both implementations involve setting an instance of `IDistributedCache` in `Startup`. +There are two implementations of built in to ASP.NET Core. One is based on SQL Server, and the other is based on Redis. Third-party implementations are also available, such as [NCache](http://www.alachisoft.com/ncache/aspnet-core-idistributedcache-ncache.html). Details of these implementations can be found at . Both implementations involve setting an instance of `IDistributedCache` in `Startup`. There are no tag attributes specifically associated with using any specific implementation of `IDistributedCache`.