ExpirableItemDictionary 2.0.0
See the version list below for details.
dotnet add package ExpirableItemDictionary --version 2.0.0
NuGet\Install-Package ExpirableItemDictionary -Version 2.0.0
<PackageReference Include="ExpirableItemDictionary" Version="2.0.0" />
paket add ExpirableItemDictionary --version 2.0.0
#r "nuget: ExpirableItemDictionary, 2.0.0"
// Install ExpirableItemDictionary as a Cake Addin #addin nuget:?package=ExpirableItemDictionary&version=2.0.0 // Install ExpirableItemDictionary as a Cake Tool #tool nuget:?package=ExpirableItemDictionary&version=2.0.0
A small library providing an easy way to cache objects with an expiration time.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net35 is compatible. net40 was computed. 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.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Removed auto-cleanup timer and internal thread-safety. If required, this feature needs to be implemented in client-code by periodically calling RemoveExpiredItems(). Make sure to implement proper locking when using a separate cleanup thread (e.g. a Timer).
- Trying to access a non-existing element via indexer will now throw a KeyNotFoundException as expected from an IDictionary.
- Refactoring and code cleanup