Skip to content

1. Installation

Vladyslav Lobyntsev edited this page Mar 5, 2024 · 2 revisions

Before start using the library, the target Nuget packages should be installed. Use .NET CLI to install the target packages (or search VLobyntsev.FluentCaching in IDE package manager)

If the caching data needs to be stored in memory, install

dotnet add package VLobyntsev.FluentCaching.Memory

If the caching data needs to be stored in distributed cache, install

dotnet add package VLobyntsev.FluentCaching.DistributedCache

To be able to inject ICache instance though ASP.NET Core DI, install

dotnet add package VLobyntsev.FluentCaching.DependencyInjection
Clone this wiki locally