CacheManager
CacheManager copied to clipboard
CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
Is there a simple way to specify priority for memory cache? Tried to inherit from SystemWebCacheHandle, but it seems I need to reimplement it's code almost entirely.
Any chance to get a new CacheManager version from the current changes in the "dev" branch? Especially the concurrency fix with https://github.com/MichaCo/CacheManager/commit/f2d6e113ad74a22d3ff413addbdf2b442574a0b2 addresses a current production issue on our side.
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 11.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 11.0.1 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Although it "shouldn't" matter, First, I am using Redis in Azure. My configuration is as follows. It's two cache handles, Memory and Redis, with a Redis backplane. ``` var ret...
I have legacy code using CacheManager.Core 0.9.2 and CacheManager.Serialization.Json 0.9.2, which works fine: ``` using CacheManager.Core; using Newtonsoft.Json; ... var config = ConfigurationBuilder.LoadConfiguration(cacheName); var serializerSettings = new JsonSerializerSettings { NullValueHandling...
Could not load type 'CacheManager.Core.Logging.ILoggerFactory' from assembly 'CacheManager.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5b450b4fb65c4cdb' ```csharp Unhandled exception occurred: Could not load type 'CacheManager.Core.Logging.ILoggerFactory' from assembly 'CacheManager.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5b450b4fb65c4cdb'. System.TypeLoadException: Could not load...
**Describe the bug** I've been on 2.0.0-beta-1629 for a while and trying to update to 2.0.0. When I use 2.0.0 with my current setup which is AWS Elasticache with ValKey...