![]() |
VOOZH | about |
dotnet add package CacheManager.Web --version 0.7.2
NuGet\Install-Package CacheManager.Web -Version 0.7.2
<PackageReference Include="CacheManager.Web" Version="0.7.2" />
<PackageVersion Include="CacheManager.Web" Version="0.7.2" />Directory.Packages.props
<PackageReference Include="CacheManager.Web" />Project file
paket add CacheManager.Web --version 0.7.2
#r "nuget: CacheManager.Web, 0.7.2"
#:package CacheManager.Web@0.7.2
#addin nuget:?package=CacheManager.Web&version=0.7.2Install as a Cake Addin
#tool nuget:?package=CacheManager.Web&version=0.7.2Install as a Cake Tool
CacheManager is an open source abstraction layer for caching written in C#. It supports various cache providers and implements many advanced features. This package contains an System.Web.Caching.OutputCacheProvider which uses cache manager.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net40 net40 is compatible. net403 net403 was computed. net45 net45 is compatible. net451 net451 was computed. net452 net452 was computed. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| DNX | dnx451 dnx451 is compatible. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.2.0 | 76,600 | 12/6/2018 |
| 1.1.2 | 21,523 | 11/18/2017 |
| 1.1.1 | 36,191 | 7/2/2017 |
| 1.1.0 | 12,313 | 6/5/2017 |
| 1.0.1 | 3,988 | 4/20/2017 |
| 1.0.0 | 3,695 | 3/19/2017 |
| 1.0.0-beta-1456 | 1,227 | 3/14/2017 |
| 0.9.3 | 69,291 | 2/3/2017 |
| 0.9.2 | 6,956 | 12/1/2016 |
| 0.9.1 | 14,247 | 9/23/2016 |
| 0.9.0 | 3,575 | 8/21/2016 |
| 0.8.0 | 16,908 | 2/28/2016 |
| 0.7.4 | 3,194 | 2/14/2016 |
| 0.7.3 | 3,087 | 2/5/2016 |
| 0.7.2 | 3,252 | 1/27/2016 |
| 0.7.1 | 5,170 | 1/20/2016 |
| 0.7.0 | 4,013 | 12/26/2015 |
| 0.6.1 | 3,416 | 10/31/2015 |
New Features
* Added logging, added logging abstraction to core and a first implementation based on Microsoft.Extensions.Logging (new NuGet "CacheManager.AspNetCore.Logging")
Enhancements
* Redis: Get, Set and Updates have been rewritten to use Lua scripts.
This way all operations behave better than lock or transactions in worst case scenarios (fail overs, server restarts etc...)
Bugfixes:
* Redis value converter didn't work with .net framework and .net core mixed clr types
* Redis init with disposed TextWriter
* In memory cache 'Update' didn't work properly