In-memory cache implementation of Microsoft.Extensions.Caching.Memory.IMemoryCache.
$ dotnet add package Microsoft.Extensions.Caching.MemoryProvides implementations for local and distributed in-memory cache. It stores and retrieves data in a fast and efficient way.
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)}");
<!-- The main types provided in this library -->
<!-- Links to further documentation. Remove conceptual documentation if not available for the library. -->
<!-- The related packages associated with this package -->
<!-- How to provide feedback on this package and contribute to it -->
The main types provided by this library are:
Microsoft.Extensions.Caching.Memory.MemoryCacheMicrosoft.Extensions.Caching.Memory.MemoryCacheOptionsMicrosoft.Extensions.Caching.Distributed.MemoryDistributedCacheMicrosoft.Extensions.Caching.Memory.MemoryDistributedCacheOptionsMicrosoft.Extensions.Caching.Memory is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.