ThrottlingTroll.CounterStores.DistributedCache 6.1.2

dotnet add package ThrottlingTroll.CounterStores.DistributedCache --version 6.1.2
NuGet\Install-Package ThrottlingTroll.CounterStores.DistributedCache -Version 6.1.2
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="6.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ThrottlingTroll.CounterStores.DistributedCache --version 6.1.2
#r "nuget: ThrottlingTroll.CounterStores.DistributedCache, 6.1.2"
#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=6.1.2

// Install ThrottlingTroll.CounterStores.DistributedCache as a Cake Tool
#tool nuget:?package=ThrottlingTroll.CounterStores.DistributedCache&version=6.1.2

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.

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
6.1.2 72 4/5/2024
6.1.0 70 1/28/2024
6.0.0 142 12/4/2023
6.0.0-beta6 83 11/26/2023
6.0.0-beta5 92 11/26/2023
6.0.0-beta4 79 11/26/2023
6.0.0-beta3 81 11/26/2023
6.0.0-beta2 87 11/26/2023
6.0.0-beta1 90 11/25/2023
5.0.0 458 11/2/2023
4.0.5 175 8/27/2023
4.0.4 142 7/22/2023
1.0.0-preview1 140 7/22/2023