IL.RankedCache 1.0.9

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

// Install IL.RankedCache as a Cake Tool
#tool nuget:?package=IL.RankedCache&version=1.0.9                

Ranked Cache

  • Easy to setup
  • Measures how many times each cache entry was accessed
  • Allows automatic cleanup based on policy, that you can setup during service registration (MaxItems, Frequency)
  • Manual mode, which allows to execute cleanup manually, which will do the same as automatic without scheduling new cleanups
  • After each cleanup counters of existing cache entries reset to 1 allowing new cache entries to take leadership in ranking board and survive next cleanup

Usage

  • Package comes with ServiceCollectionExtensions: AddRankedCache() that have to be used on startup. Extension has different overloads to cover different invariants of setup.

  • Ranked cache with default setup options (1000 MaxItems, CleanupMode.Auto, Frequency = TimeSpan.FromHours(1)), constraint sets type to be used for counter - pick counter type based on expected scenario and memory efficiency limitations. If counter reaches MaxValue of selected type no exception will be thrown, following cache item access attempts will keep the counter at MaxValue:

    • new ServiceCollection().AddRankedCache<short>()
    • new ServiceCollection().AddRankedCache<int>()
    • new ServiceCollection().AddRankedCache<long>()
  • Ranked cache with custom options:

    • new ServiceCollection().AddRankedCache<short>(options => options.MaxItems = 1500)
    • new ServiceCollection().AddRankedCache<int>(options => { options.MaxItems = 5000; options.CleanupMode = CleanupMode.Manual; })
    • new ServiceCollection().AddRankedCache<long>(options => { options.MaxItems = 1500; options.CleanupMode = CleanupMode.Auto; options.Frequency = TimeSpan.FromHours(12); })
  • Ranked cache with custom cache provider implementation & custom options:

    • new ServiceCollection().AddRankedCache<int, CustomICacheProviderImplementation>()
    • new ServiceCollection().AddRankedCache<int, CustomICacheProviderImplementation>(options => options.MaxItems = 1500)
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 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 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
1.2.0 84 3/29/2024
1.1.2 217 3/4/2024
1.1.1 228 9/16/2023
1.1.0 111 9/16/2023
1.0.13 193 8/23/2023
1.0.12 175 7/19/2023
1.0.11 141 7/19/2023
1.0.10 142 7/19/2023
1.0.9 207 7/7/2023
1.0.8 139 6/21/2023
1.0.7 141 6/19/2023
1.0.6 140 6/14/2023
1.0.4 144 6/6/2023
1.0.3 145 6/6/2023
1.0.2 126 6/5/2023