ReCache 4.0.1

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

// Install ReCache as a Cake Tool
#tool nuget:?package=ReCache&version=4.0.1

A high performance, in-memory, concurrency safe, transparent generic key / value cache - basically, it makes some stuff a lot faster

Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  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.

This package has no dependencies.

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
8.0.0 8,311 9/3/2017
7.0.1 1,538 8/17/2017
7.0.0 1,138 2/21/2017
6.0.0 936 2/19/2017
5.0.0 944 1/31/2017
4.0.1 972 1/16/2017
4.0.0 960 1/14/2017
3.0.0 1,002 1/1/2017
2.0.1 1,276 6/9/2016
2.0.0 1,215 5/26/2016
1.1.2 1,421 9/14/2015
1.1.1 1,318 9/14/2015
1.1.0 1,235 9/14/2015
1.0.0.27951 1,461 4/21/2015
1.0.0.25626 1,350 4/21/2015
1.0.0.24727 1,138 4/21/2015

4.0.1 fixes the nuget package. 3.X and 4.0.0 did not properly include some referenced assemblies.

4.0.0 changes listed again below for easy reference.
Introduced item expiry randomization .
The percentage of the expiry timespan to randomize, using the endpoint of the timespan as the midpoint of the randomization span. For example, if the CacheItemExpiry is 300 seconds, and the CacheItemExpiryPercentageRandomization is set to 10 (10%, which would be 30 seconds), then the item will be guaranteed to expire anywhere from second number 285 to second number 315. That is, the random expiry window is between 300 -5% and 300 +5%.  So it distributes the 10% to either side of the specified expiry time (15 seconds to either side).
This allows the cache to distribute the cost of the reloading of expired items, in the case where many keys were loaded in close succession. The values 0 through 100 are supported. The default is 10.

If there is a problem with the properties on the CacheOptions, a CacheOptionsException will be thrown now instead of a plain ArgumentException. CacheOptionsException still inherits from ArgumentException.