Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

wullemsb/Extensions.Caching.PostgreSQL

Repository files navigation

UPDATE

I archived this project in favor of the Microsoft.Extensions.Caching.Postgres library: https://www.nuget.org/packages/Microsoft.Extensions.Caching.Postgres

More info: https://techcommunity.microsoft.com/blog/azuredevcommunityblog/postgres-as-a-distributed-cache-unlocks-speed-and-simplicity-for-modern-net-work/4462139

Extensions.Caching.PostgreSQL

Distributed cache implementation of IDistributedCache using PostgreSQL

Getting Started

  1. Install the package into your project
dotnet add package Extensions.Caching.PostgreSql
  1. Add the following line to the Startup Configure method.
services.AddDistributedPostgreSqlCache(options => 
{
	options.ConnectionString = configuration["ConnectionString"];
	options.SchemaName = configuration["SchemaName"];
	options.TableName = configuration["TableName"];
})

Available on NuGet at https://www.nuget.org/packages/Extensions.Caching.PostgreSql/

About

Distributed cache implementation of IDistributedCache using PostgreSQL

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •