ThrottlingTroll.CounterStores.DistributedCache 7.1.0-beta1

This is a prerelease version of ThrottlingTroll.CounterStores.DistributedCache.
There is a newer version of this package available.
See the version list below for details.
dotnet add package ThrottlingTroll.CounterStores.DistributedCache --version 7.1.0-beta1                
NuGet\Install-Package ThrottlingTroll.CounterStores.DistributedCache -Version 7.1.0-beta1                
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="ThrottlingTroll.CounterStores.DistributedCache" Version="7.1.0-beta1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ThrottlingTroll.CounterStores.DistributedCache --version 7.1.0-beta1                
#r "nuget: ThrottlingTroll.CounterStores.DistributedCache, 7.1.0-beta1"                
#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 ThrottlingTroll.CounterStores.DistributedCache as a Cake Addin
#addin nuget:?package=ThrottlingTroll.CounterStores.DistributedCache&version=7.1.0-beta1&prerelease

// Install ThrottlingTroll.CounterStores.DistributedCache as a Cake Tool
#tool nuget:?package=ThrottlingTroll.CounterStores.DistributedCache&version=7.1.0-beta1&prerelease                

ThrottlingTroll.CounterStores.DistributedCache

ICounterStore implementation that uses ASP.NET Core's IDistributedCache.

Fast, but not entirely consistent (because IDistributedCache does not provide atomic operations). In other words, your computing instances might go slightly on their own. For true consistency consider using ThrottlingTroll.CounterStores.Redis instead.

<img alt="Nuget" src="https://img.shields.io/nuget/dt/ThrottlingTroll.CounterStores.DistributedCache?label=ThrottlingTroll.CounterStores.DistributedCache%20downloads">

How to use

  1. Install package from NuGet:

    dotnet add package ThrottlingTroll.CounterStores.DistributedCache
    
  2. Configure an IDistributedCache option of your choice as described here.

  3. EITHER put DistributedCacheCounterStore instance into your DI container:

    builder.Services.AddSingleton<ICounterStore>(provider =>
        new DistributedCacheCounterStore(provider.GetRequiredService<IDistributedCache>())
    );
    

    OR provide an instance of it via .UseThrottlingTroll() method:

    app.UseThrottlingTroll(options => {
        options.CounterStore = new DistributedCacheCounterStore(app.Services.GetRequiredService<IDistributedCache>());
    });
    
Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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 was computed.  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. 
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
7.2.0 93 8/31/2024
7.2.0-beta1 71 8/31/2024
7.1.2 115 6/12/2024
7.1.1 80 6/3/2024
7.1.0 97 6/1/2024
7.1.0-beta1 86 6/1/2024
7.0.0 98 5/15/2024
7.0.0-beta2 90 5/10/2024
7.0.0-beta1 102 5/5/2024
6.1.2 108 4/5/2024
6.1.0 94 1/28/2024
6.0.0 162 12/4/2023
6.0.0-beta6 121 11/26/2023
6.0.0-beta5 115 11/26/2023
6.0.0-beta4 116 11/26/2023
6.0.0-beta3 97 11/26/2023
6.0.0-beta2 118 11/26/2023
6.0.0-beta1 108 11/25/2023
5.0.0 974 11/2/2023
4.0.5 195 8/27/2023
4.0.4 165 7/22/2023
1.0.0-preview1 158 7/22/2023