Microsoft.Extensions.Caching.Memory
9.0.0-preview.1.24080.9
Prefix Reserved
Advisory: https://github.com/advisories/GHSA-qj66-m88j-hmgj | Severity: high |
See the version list below for details.
dotnet add package Microsoft.Extensions.Caching.Memory --version 9.0.0-preview.1.24080.9
NuGet\Install-Package Microsoft.Extensions.Caching.Memory -Version 9.0.0-preview.1.24080.9
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0-preview.1.24080.9" />
paket add Microsoft.Extensions.Caching.Memory --version 9.0.0-preview.1.24080.9
#r "nuget: Microsoft.Extensions.Caching.Memory, 9.0.0-preview.1.24080.9"
// Install Microsoft.Extensions.Caching.Memory as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Caching.Memory&version=9.0.0-preview.1.24080.9&prerelease // Install Microsoft.Extensions.Caching.Memory as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Caching.Memory&version=9.0.0-preview.1.24080.9&prerelease
About
Provides implementations for local and distributed in-memory cache. It stores and retrieves data in a fast and efficient way.
Key Features
- A concrete implementation of the IMemoryCache interface, which represents a local in-memory cache that stores and retrieves data in a fast and efficient way
- A distributed cache that supports higher scale-out than local cache
- Expiration and eviction policies for its entries
- Entry prioritization for when the cache size limit is exceeded and needs to be compacted by entry eviction
- Track of cache statictics
How to Use
Use Microsoft.Extensions.Caching.Memory over System.Runtime.Caching when working with ASP.NET Core as it provides better integration support. For example, IMemoryCache works natively with ASP.NET Core dependency injection.
Local in-memory serialization:
using Microsoft.Extensions.Caching.Memory;
using MemoryCache cache = new(new MemoryCacheOptions());
object valueToCache = new();
string key = "key";
using (ICacheEntry entry = cache.CreateEntry(key))
{
// Entries are committed after they are disposed therefore it does not exist yet.
Console.WriteLine($"Exists: {cache.TryGetValue(key, out _)}\n");
entry.Value = valueToCache;
entry.SlidingExpiration = TimeSpan.FromSeconds(2);
}
bool exists = cache.TryGetValue(key, out object? cachedValue);
Console.WriteLine($"Exists: {exists}" );
Console.WriteLine($"cachedValue is valueToCache? {object.ReferenceEquals(cachedValue, valueToCache)}\n");
Console.WriteLine("Wait for the sliding expiration...");
Thread.Sleep(TimeSpan.FromSeconds(2));
Console.WriteLine("Exists: " + cache.TryGetValue(key, out _));
// You can also use the acceleration extensions to set and get entries
string key2 = "key2";
object value2 = new();
cache.Set("key2", value2);
object? cachedValue2 = cache.Get(key2);
Console.WriteLine($"cachedValue2 is value2? {object.ReferenceEquals(cachedValue2, value2)}");
Main Types
The main types provided by this library are:
Microsoft.Extensions.Caching.Memory.MemoryCache
Microsoft.Extensions.Caching.Memory.MemoryCacheOptions
Microsoft.Extensions.Caching.Distributed.MemoryDistributedCache
Microsoft.Extensions.Caching.Memory.MemoryDistributedCacheOptions
Additional Documentation
Related Packages
Microsoft.Extensions.Caching.Abstractions
Feedback & Contributing
Microsoft.Extensions.Caching.Memory is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions 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 is compatible. 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. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. 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 | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.Caching.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Options (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Primitives (>= 9.0.0-preview.1.24080.9)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.0
- Microsoft.Extensions.Caching.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Options (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Primitives (>= 9.0.0-preview.1.24080.9)
-
net8.0
- Microsoft.Extensions.Caching.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Options (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Primitives (>= 9.0.0-preview.1.24080.9)
-
net9.0
- Microsoft.Extensions.Caching.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Options (>= 9.0.0-preview.1.24080.9)
- Microsoft.Extensions.Primitives (>= 9.0.0-preview.1.24080.9)
NuGet packages (2.4K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Caching.Memory:
Package | Downloads |
---|---|
Microsoft.EntityFrameworkCore
Entity Framework Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API. Commonly Used Types: Microsoft.EntityFrameworkCore.DbContext Microsoft.EntityFrameworkCore.DbSet |
|
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers. |
|
Microsoft.Data.SqlClient
The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS). Commonly Used Types: Microsoft.Data.SqlClient.SqlConnection Microsoft.Data.SqlClient.SqlException Microsoft.Data.SqlClient.SqlParameter Microsoft.Data.SqlClient.SqlDataReader Microsoft.Data.SqlClient.SqlCommand Microsoft.Data.SqlClient.SqlTransaction Microsoft.Data.SqlClient.SqlParameterCollection Microsoft.Data.SqlClient.SqlClientFactory When using NuGet 3.x this package requires at least version 3.4. |
|
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core. |
|
Microsoft.EntityFrameworkCore.Design
Shared design-time components for Entity Framework Core tools. |
GitHub repositories (271)
Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Caching.Memory:
Repository | Stars |
---|---|
jellyfin/jellyfin
The Free Software Media System
|
|
dotnet/efcore
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
|
|
App-vNext/Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.
|
|
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 61,112 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 79,809 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 64,949 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 118,770 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 57,541 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 55,655 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 153,951 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 73,121 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 79,628 | 2/13/2024 | |
8.0.1 | 3,594,130 | 10/8/2024 | |
8.0.0 | 94,737,353 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 1,105,908 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 289,130 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 305,232 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 163,985 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 131,169 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 130,017 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 190,090 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 199,389 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 135,932 | 2/21/2023 | |
7.0.0 | 129,502,999 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 234,121 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 238,182 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 106,932 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 76,306 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 66,734 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 78,865 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 77,799 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 86,285 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 70,878 | 2/17/2022 | |
6.0.2 | 228,692 | 10/8/2024 | |
6.0.1 | 216,975,769 | 2/8/2022 | |
6.0.0 | 106,387,957 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 476,906 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 238,615 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 95,122 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 48,647 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 184,737 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 85,874 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 98,534 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 73,940 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 365,413 | 2/12/2021 | |
5.0.0 | 174,386,675 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 380,426 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 323,918 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 201,935 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 117,076 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 58,771 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 6,371 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 202,010 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 116,905 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 111,736 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 62,136 | 3/16/2020 | |
3.1.32 | 5,121,365 | 12/13/2022 | |
3.1.31 | 989,199 | 11/8/2022 | |
3.1.30 | 1,030,830 | 10/11/2022 | |
3.1.29 | 1,312,508 | 9/13/2022 | |
3.1.28 | 866,436 | 8/9/2022 | |
3.1.27 | 905,192 | 7/12/2022 | |
3.1.26 | 732,850 | 6/14/2022 | |
3.1.25 | 1,179,980 | 5/10/2022 | |
3.1.24 | 805,120 | 4/11/2022 | |
3.1.23 | 1,527,780 | 3/8/2022 | |
3.1.22 | 4,638,848 | 12/14/2021 | |
3.1.21 | 3,455,733 | 11/7/2021 | |
3.1.20 | 1,971,934 | 10/11/2021 | |
3.1.19 | 2,647,107 | 9/14/2021 | |
3.1.18 | 5,493,750 | 8/10/2021 | |
3.1.17 | 2,328,170 | 7/13/2021 | |
3.1.16 | 3,436,054 | 6/8/2021 | |
3.1.15 | 3,513,925 | 5/11/2021 | |
3.1.14 | 4,451,017 | 4/6/2021 | |
3.1.13 | 5,456,510 | 3/9/2021 | |
3.1.12 | 3,811,472 | 2/9/2021 | |
3.1.11 | 6,433,738 | 1/12/2021 | |
3.1.10 | 12,238,926 | 11/9/2020 | |
3.1.9 | 16,662,662 | 10/13/2020 | |
3.1.8 | 31,526,553 | 9/8/2020 | |
3.1.7 | 16,298,094 | 8/11/2020 | |
3.1.6 | 17,434,648 | 7/14/2020 | |
3.1.5 | 17,476,521 | 6/9/2020 | |
3.1.4 | 20,427,188 | 5/12/2020 | |
3.1.3 | 31,285,201 | 3/24/2020 | |
3.1.2 | 15,438,196 | 2/18/2020 | |
3.1.1 | 24,339,780 | 1/14/2020 | |
3.1.0 | 41,251,430 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 164,799 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 32,179 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 734,082 | 10/15/2019 | |
3.0.3 | 317,029 | 2/18/2020 | |
3.0.2 | 95,243 | 1/14/2020 | |
3.0.1 | 2,159,563 | 11/18/2019 | |
3.0.0 | 37,033,657 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 46,632 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,354,727 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 406,319 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 92,558 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 177,380 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 647,708 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 22,836 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 216,503 | 3/6/2019 | |
3.0.0-preview.19074.2 | 32,367 | 1/29/2019 | |
3.0.0-preview.18572.1 | 52,728 | 12/3/2018 | |
2.2.0 | 154,411,789 | 12/3/2018 | |
2.2.0-preview3-35497 | 242,672 | 10/17/2018 | |
2.2.0-preview2-35157 | 172,879 | 9/12/2018 | |
2.2.0-preview1-35029 | 101,756 | 8/22/2018 | |
2.1.23 | 23,152,932 | 10/13/2020 | |
2.1.2 | 33,021,429 | 8/21/2018 | |
2.1.1 | 47,723,800 | 6/18/2018 | |
2.1.0 | 67,483,335 | 5/29/2018 | |
2.1.0-rc1-final | 256,545 | 5/6/2018 | |
2.1.0-preview2-final | 249,024 | 4/10/2018 | |
2.1.0-preview1-final | 398,645 | 2/26/2018 | |
2.0.2 | 10,878,806 | 5/7/2018 | |
2.0.1 | 17,103,883 | 3/13/2018 | |
2.0.0 | 107,022,363 | 8/11/2017 | |
2.0.0-preview2-final | 134,241 | 6/28/2017 | |
2.0.0-preview1-final | 1,061,953 | 5/10/2017 | |
1.1.2 | 8,178,390 | 5/9/2017 | |
1.1.1 | 17,062,682 | 3/6/2017 | |
1.1.0 | 9,266,881 | 11/16/2016 | |
1.1.0-preview1-final | 70,335 | 10/24/2016 | |
1.0.2 | 4,200,902 | 3/6/2017 | |
1.0.1 | 625,760 | 12/12/2016 | |
1.0.0 | 245,360,442 | 6/27/2016 | |
1.0.0-rc2-final | 283,017 | 5/16/2016 | |
1.0.0-rc1-final | 510,585 | 11/18/2015 |