CacheManager icon indicating copy to clipboard operation
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.

Results 79 CacheManager issues
Sort by recently updated
recently updated
newest added

The problem is we had used the below Ocelot JSON to cache the response and it's holding the data for one full day (86400 secs). here is suppose to get...

It looks like #228 added what I was wanting, but that the latest of the https://www.nuget.org/packages/CacheManager.SystemRuntimeCaching was published the year prior.

StackExchange.Redis is now at version 2.1.x, and there are [useful fixes](https://stackexchange.github.io/StackExchange.Redis/ReleaseNotes) in there. Most notably to me is fixing some intermittent [connectivity problems with Azure Redis](https://github.com/StackExchange/StackExchange.Redis/pull/1374). That is an issue...

The last commit for the current client used for MemCached was over 1 year ago. This repo is not updated for .net core support. However, there is another updated version...

up-for-grabs

- [ ] Extend Configuration Docs: Examples for each cache handle how to configure via json, xml or code - [ ] Microsoft Bond Serialization (added in 1.0.0 #127) -...

up-for-grabs
documentation

Love the library and use it all the time. Will you be introducing strongly typed keys, even if its for a subset of cache providers with limited support? Conversion of...

feature request

It appears from the code that RedisCacheHandle.Clear() will actually flush the entire database. Doesn't that go against the intention individual ICache instances being isolated from others?

feature request

We have multiple services with an in-memory cache backed by a redis backplane. This is also a read through cache, so if nothing is found in in-memory or redis, then...

Updated to load cache configuration along with using Default provided by IConfiguration in startup.cs

.NET Core 3x introduces the new built-in [System.Text.Json](https://github.com/dotnet/corefx/blob/master/src/System.Text.Json/docs/SerializerProgrammingModel.md) namespace which has a higher performance than the `Newtonsoft.Json` dependency of `CacheManager.Serialization.Json`. It would be nice to add it later.

enhancement
up-for-grabs