An open API service indexing awesome lists of open source software.

https://github.com/ediwang/edi.cacheaside.inmemory

In memory cache helpers for ASP.NET Core for implement cache aside pattern in small and non-distributed apps
https://github.com/ediwang/edi.cacheaside.inmemory

Last synced: about 1 year ago
JSON representation

In memory cache helpers for ASP.NET Core for implement cache aside pattern in small and non-distributed apps

Awesome Lists containing this project

README

          

# Edi.CacheAside.InMemory

[![.NET Build and Pack](https://github.com/EdiWang/Edi.CacheAside.InMemory/actions/workflows/dotnet.yml/badge.svg)](https://github.com/EdiWang/Edi.CacheAside.InMemory/actions/workflows/dotnet.yml)

In memory cache helpers for ASP.NET Core for implement cache aside pattern in small and non-distributed apps

> If you are looking for cloud native app design pattern, this is not for you. Please use a distributed cache product like Redis to implement Cache Aside pattern on your cloud app.

## Install from NuGet

```powershell
dotnet add package Edi.CacheAside.InMemory
```

```powershell
NuGet\Install-Package Edi.CacheAside.InMemory
```

```xml

```

## Usage

### ASP.NET Core

```csharp
services.AddInMemoryCacheAside();
```

TODO

```csharp
```