DynaCache 1.7.0
dotnet add package DynaCache --version 1.7.0
NuGet\Install-Package DynaCache -Version 1.7.0
<PackageReference Include="DynaCache" Version="1.7.0" />
paket add DynaCache --version 1.7.0
#r "nuget: DynaCache, 1.7.0"
// Install DynaCache as a Cake Addin #addin nuget:?package=DynaCache&version=1.7.0 // Install DynaCache as a Cake Tool #tool nuget:?package=DynaCache&version=1.7.0
DynaCache is a small C# library that allows you to automatically cache the output from standard .NET functions. Although it is possible to use it without one, DynaCache works best when used in conjunction with a dependency injection (DI) framework, such as StructureMap, Ninject, etc.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added ability to specify named cache durations in application configuration, e.g.:
<configSections>
<section name="dynaCache" type="DynaCache.DynaCacheSection, DynaCache"/>
</configSections>
<dynaCache>
<cacheDurations>
<add name="short" duration="00:00:01" />
<add name="long" duration="00:01:00" />
</cacheDurations>
</dynaCache>
Also tweaked how DateTime and DateTimeOffset parameters are recorded in cache keys to make them less prone to collision