SimpleHelpers.MemoryCache 1.0.6

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

// Install SimpleHelpers.MemoryCache as a Cake Tool
#tool nuget:?package=SimpleHelpers.MemoryCache&version=1.0.6

Simple lightweight object in-memory cache, with a background timer to remove expired objects.

Fast in-memory cache for data that are expensive to create and can be used in a thread-safe manner.
All stored items are kept in concurrent data structures (ConcurrentDictionary) to allow multi-thread usage of the MemoryCache static methods.

Note: this nuget package contains c# source code and depends on System.Collections.Concurrent introduced in .Net 4.0.

There are no supported framework assets in this 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.1.1 21,309 5/29/2015
1.1.0 1,740 3/20/2015
1.0.6 2,160 12/10/2014
1.0.5 1,948 6/8/2014
1.0.4 2,148 4/16/2014
1.0.3 1,865 10/9/2013
1.0.2 1,803 10/9/2013
1.0.1 1,908 4/15/2013
1.0.0 1,892 4/12/2013

1.0.6
* new method: ClearByPrefix
1.0.5
* Improve null handling
1.0.4
* Nuget dependencies adjustment
1.0.3
* Allow adding null objects
* Better documentation