CacheManager.Web 1.0.1

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

// Install CacheManager.Web as a Cake Tool
#tool nuget:?package=CacheManager.Web&version=1.0.1

CacheManager extension package which uses System.Web.Caching and also comes with a custom OutputCache provider. CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  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. 
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
2.0.0-beta-1629 5,188 11/15/2018
1.2.0 47,866 12/6/2018
1.1.2 10,919 11/18/2017
1.1.1 25,527 7/2/2017
1.1.0 10,127 6/5/2017
1.0.1 1,977 4/20/2017
1.0.0 1,498 3/19/2017
1.0.0-beta-1456 777 3/14/2017
0.9.3 62,374 2/3/2017
0.9.2 4,830 12/1/2016
0.9.1 6,322 9/23/2016
0.9.0 1,538 8/21/2016
0.8.0 14,016 2/28/2016
0.7.4 1,180 2/14/2016
0.7.3 1,071 2/5/2016
0.7.2 1,208 1/27/2016
0.7.1 3,150 1/20/2016
0.7.0 1,834 12/26/2015
0.6.1 1,396 10/31/2015
0.6.0 3,646 6/9/2015
0.5.0 1,448 4/15/2015
0.4.4.1 1,164 4/11/2015
0.4.4 1,136 4/10/2015
0.4.3 1,201 4/4/2015
0.4.2 1,157 3/31/2015
0.4.1 1,158 3/27/2015
0.4.0 1,157 3/22/2015
0.3.1 1,477 6/16/2014
0.3.0 1,617 3/5/2014
0.2.0 1,289 2/23/2014

# Release 1.0.1
* Improvements for using CacheManager in ASP.NET Core DI, new overloads for the `IServiceCollection`
* Fixed an issue with NuGet references when CacheManager.Core was referenced implicitly only #147
* Extended the `RemoveByHandle` event to also return the removed cache value (if possible). This is not supported for Redis key-events based triggers #144

# Release 1.0.0

**New Things**
* New serializer(s) based on [Microsoft.Bond](https://github.com/Microsoft/bond) supporting all three Bond serializers! #127
* Eviction based events reacting on the cache vendor specific evictions see #116
 * New event on `BaseCacheManager` with information about which cache handle and why the event was triggered
 * With this, CacheManager now can sync the cache `Up`.

**Minor New Things**
* Dictionary Cache Handle now has a timer based eviction loop which should be more reliable.
* The Memcached cache handle now finally has a working clear region function #104
* All serializers can be used via Microsoft's configuration extensions as known types (also added to the json schema)
* Memcached and Redis cache handles now can be configured to use an already initialized client. The `WithxyzHandle` extension methods have new overloads to pass in the existing client. #118

**Bug Fixes**
* #134 Serialization had some issues in some cases with loading the correct Types
* #136 when working with absolute expiration, there were some odds when renewing the expiration date
* Memcached handle had a bug in version 0.9.3 when configured via xml configuration section, see #118

**Breaking Changes**
* UpdateMode `Full` has been removed
* Minimum netstandard has been increased to 1.2 from 1.1 for the `Core` package

Please report any bugs on github, and feel free to ask questions on either StackOverflow with the `[cachemanager]` tag or on our (moved) homepage http://cachemanager.michaco.net/.