CosmosDBTableAsyncOutputCacheProvider
is an asynchronous output cache provider for ASP.NET that uses Azure Cosmos DB Table API as the backend storage. This allows for distributed caching across web applications hosted in different regions, providing high availability and low latency.
- Asynchronous operations for improved scalability via integration with OutputCacheModuleAsync
- Distributed caching support using Azure Cosmos DB Table API
- .NET Framework 4.6.2 or later (Full framework - not .NET Core)
- Azure Cosmos DB account with Table API
-
Target your application to .NET Framework 4.6.2 or later
The
OutputCacheProviderAsync
interface was introduced in .NET Framework 4.6.2, therefore you need to target your application to .NET Framework 4.6.2 or above in order to use the Async OutputCache Module. Download the .NET Framework 4.6.2 Developer Pack if you do not have it installed yet and update your application'sweb.config
targetFramework attributes as demonstrated below:<system.web> <compilation debug="true" targetFramework="4.6.2"/> <httpRuntime targetFramework="4.6.2"/> </system.web>
-
Add NuGet packages
Use the NuGet package manager to install:
- Microsoft.AspNet.OutputCache.OutputCacheModuleAsync
- Microsoft.AspNet.OutputCache.CosmosDBTableAsyncOutputCacheProvider
This will add a reference to the necessary assemblies and add the following configuration into the
web.config
file.<system.web> <caching> <outputCache defaultProvider="CosmosDBTableAsyncOutputCacheProvider"> <providers> <add name="CosmosDBTableAsyncOutputCacheProvider" connectionStringName="StorageConnectionStringForOutputCacheProvider" tableName="[TableName]" type="Microsoft.AspNet.OutputCache.CosmosDBTableAsyncOutputCacheProvider.CosmosDBTableAsyncOutputCacheProvider, Microsoft.AspNet.OutputCache.CosmosDBTableAsyncOutputCacheProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> </providers> </outputCache> </caching> </system.web>
-
Further Configuration
Be sure that
web.config
includes both the connection string and theOutputCacheModuleAsync
configuration:<configuration> <appSettings> <add key="CosmosDBEndpoint" value="https://<your-account>.documents.azure.com:443/" /> <add key="CosmosDBKey" value="<your-account-key>" /> <add key="CosmosDBDatabase" value="OutputCache" /> <add key="CosmosDBTable" value="CacheEntries" /> </appSettings> <system.webServer> <modules> <remove name="OutputCache" /> <add name="OutputCache" type="Microsoft.AspNet.OutputCache.OutputCacheModuleAsync, Microsoft.AspNet.OutputCache.OutputCacheModuleAsync" preCondition="integratedMode" /> </modules> </system.webServer> </configuration>
- Dependency version updates.
- Migrated to using
Azure.Data.Tables
SDK for Cosmos access.
- Initial release.