Tingle.Extensions.Caching.MongoDB 4.7.0

dotnet add package Tingle.Extensions.Caching.MongoDB --version 4.7.0
NuGet\Install-Package Tingle.Extensions.Caching.MongoDB -Version 4.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tingle.Extensions.Caching.MongoDB" Version="4.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tingle.Extensions.Caching.MongoDB --version 4.7.0
#r "nuget: Tingle.Extensions.Caching.MongoDB, 4.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tingle.Extensions.Caching.MongoDB as a Cake Addin
#addin nuget:?package=Tingle.Extensions.Caching.MongoDB&version=4.7.0

// Install Tingle.Extensions.Caching.MongoDB as a Cake Tool
#tool nuget:?package=Tingle.Extensions.Caching.MongoDB&version=4.7.0

Tingle.Extensions.Caching.MongoDB

This package contains an implementation of IDistributedCache using MongoDB that can also be leveraged in ASP.NET Core as a Session State Provider. This implementation is highly inspired by CosmosCache.

MongoClient initialization

The implementation provides two distinct options:

Use an existing instance of a MongoClient

This option will make the provider reuse an existing MongoClient instance, which won't be disposed when the provider is disposed.

services.AddMongoCache((MongoCacheOptions cacheOptions) =>
{
    cacheOptions.CollectionName = Configuration["MongoCacheCollection"];
    cacheOptions.DatabaseName = Configuration["MongoCacheDatabase"];
    cacheOptions.MongoClient = existingMongoClient;
    cacheOptions.CreateIfNotExists = true;
});

Use a defined connection string

This option will make the provider maintain an internal instance of MongoClient that will get disposed when the provider is disposed. The MongoClient will be created using the provided ConnectionString.

services.AddMongoCache((MongoCacheOptions cacheOptions) =>
{
    cacheOptions.CollectionName = Configuration["MongoCacheCollection"];
    cacheOptions.DatabaseName = Configuration["MongoCacheDatabase"];
    cacheOptions.ConnectionString = Configuration["MongoConnectionString"];
    cacheOptions.CreateIfNotExists = true;
});

State storage

The provider stores the state in a collection within a database, both parameters are required within the MongoCacheOptions initialization. An optional parameter, CreateIfNotExists will make sure to create the collection if it does not exist with an optimized configuration for key-value storage.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.7.0 60 3/25/2024
4.6.0 366 3/8/2024
4.5.0 2,219 11/22/2023
4.4.1 260 11/20/2023
4.4.0 196 11/15/2023
4.3.0 649 10/18/2023
4.2.2 770 9/20/2023
4.2.1 1,485 8/4/2023
4.2.0 1,864 5/31/2023
4.1.1 284 5/26/2023
4.1.0 321 5/22/2023
4.0.0 1,228 3/14/2023
3.8.1 4,269 11/30/2022
3.8.0 432 11/21/2022
3.7.0 6,183 9/4/2022
3.6.0 1,157 7/4/2022
3.5.3 1,409 4/8/2022
3.5.2 1,042 1/7/2022
3.5.1 819 11/11/2021
3.5.0 447 11/10/2021
3.4.7 559 11/2/2021
3.4.6 415 10/29/2021
3.4.5 722 10/9/2021
3.4.4 408 9/25/2021