Toggly.FeatureManagement.Storage.DistributedCache 3.7.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Toggly.FeatureManagement.Storage.DistributedCache --version 3.7.0
                    
NuGet\Install-Package Toggly.FeatureManagement.Storage.DistributedCache -Version 3.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="Toggly.FeatureManagement.Storage.DistributedCache" Version="3.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Toggly.FeatureManagement.Storage.DistributedCache" Version="3.7.0" />
                    
Directory.Packages.props
<PackageReference Include="Toggly.FeatureManagement.Storage.DistributedCache" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Toggly.FeatureManagement.Storage.DistributedCache --version 3.7.0
                    
#r "nuget: Toggly.FeatureManagement.Storage.DistributedCache, 3.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.
#:package Toggly.FeatureManagement.Storage.DistributedCache@3.7.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Toggly.FeatureManagement.Storage.DistributedCache&version=3.7.0
                    
Install as a Cake Addin
#tool nuget:?package=Toggly.FeatureManagement.Storage.DistributedCache&version=3.7.0
                    
Install as a Cake Tool

Toggly DistributedCache storage

This package stores cloud snapshots and authoritative offline embedded catalogs through the host application's IDistributedCache.

Embedded catalog setup

Choose the access mode explicitly. Reader instances can refresh and evaluate an existing catalog, but reject all mutations. Configure exactly one SingleWriter process for a catalog; its process-local gate serializes read/check/write operations. The gate does not coordinate writers across processes or hosts.

builder.Services.AddTogglyDistributedCacheCatalogStore(options =>
{
    options.AccessMode = CatalogCacheAccessMode.SingleWriter;
});

Catalogs use the isolated key Toggly:Catalogs:{sha256-of-catalog-name}. Toggly does not set a cache expiration; the chosen backend owns durability and eviction. If a cache entry is evicted, readers keep their in-memory embedded snapshot and never repopulate it automatically.

Use Reader mode for every replica other than the designated writer:

builder.Services.AddTogglyDistributedCacheCatalogStore(options =>
{
    options.AccessMode = CatalogCacheAccessMode.Reader;
});
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.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
3.8.1 53 9/18/2026
3.8.0 76 9/15/2026
3.7.0 87 9/14/2026
3.6.6 108 9/8/2026
3.6.5 98 9/7/2026
3.6.4 101 9/6/2026
3.6.3 100 9/6/2026
3.6.1 96 9/4/2026
3.6.0 98 9/3/2026
3.5.0 99 8/21/2026
3.4.1 103 8/10/2026
3.4.0 132 7/14/2026
3.3.0 114 7/12/2026
3.2.4 138 4/8/2026
3.2.3 128 3/24/2026
3.2.2 137 3/2/2026
3.2.1 122 3/1/2026
3.2.0 128 3/1/2026
3.1.1 130 3/1/2026
0.1.0 133 3/1/2026
Loading failed