CacheManager.Microsoft.Extensions.Caching.Memory 1.0.1

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

// Install CacheManager.Microsoft.Extensions.Caching.Memory as a Cake Tool
#tool nuget:?package=CacheManager.Microsoft.Extensions.Caching.Memory&version=1.0.1

CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features. This package contains the specific cache handle for Microsoft.Extensions.Caching.Memory.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net451 is compatible.  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. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (26)

Showing the top 5 NuGet packages that depend on CacheManager.Microsoft.Extensions.Caching.Memory:

Package Downloads
Dynamic.Core

ThreadContextConnection植入使用大小自动移除操作 增加植入

Datory

基于 Dapper 及 SqlKata 的通用数据库操作库,支持SqlServer、MySql、PostgreSql、SQLite以及DM8。

Barricade

Barricade is a lightweight membership system. An ASP.NET Web API security library that implements OAuth 2 authentication and claim based authorizations.

Inaction.Extensions

.net core 快速开发框架,请下载Inaction.Web

Hummingbird.Extensions.Cache

分布式缓存

GitHub repositories (7)

Showing the top 5 popular GitHub repositories that depend on CacheManager.Microsoft.Extensions.Caching.Memory:

Repository Stars
ZiggyCreatures/FusionCache
FusionCache is an easy to use, fast and robust cache with advanced resiliency features and an optional distributed 2nd level.
VahidN/EFCoreSecondLevelCacheInterceptor
EF Core Second Level Cache Interceptor
TurnerSoftware/CacheTower
An efficient multi-layered caching system for .NET
VahidN/EFSecondLevelCache.Core
Entity Framework Core Second Level Caching Library
guoming/Hummingbird
分布式锁,分布式ID,分布式消息队列、配置中心、注册中心、服务注册发现、超时、重试、熔断、负载均衡
Version Downloads Last updated
2.0.0-beta-1629 106,403 11/15/2018
1.2.0 2,783,231 12/6/2018
1.1.2 424,183 11/18/2017
1.1.1 123,647 7/2/2017
1.1.0 2,579 6/5/2017
1.0.1 5,229 4/20/2017
1.0.0 5,830 3/19/2017
1.0.0-beta-1456 1,651 3/14/2017
0.9.3 6,683 2/3/2017
0.9.2 3,368 12/1/2016
0.9.1 3,328 9/23/2016
0.9.0 2,536 8/21/2016

# 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/.