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.
Pretty self-explanatory - intention is to traverse base type hierarchy, not to check the same one over and over again. As a side-note, this whole function should probably be replaced...
@MichaCo Attempted to add AddAsync and RemoveAsync methods to ICache. Not sure what to do with .net 4.5 and lower because it does not support [Task.CompletedTask](https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.completedtask?view=netframework-4.7.2#applies-to) and [Task.FromResult](https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.fromresult?view=netframework-4.7.2#applies-to). Any advice?...
Azure Redis has deprecated TLS 1.0 and 1.1 and will retire these protocols in the near future. According to Microsoft, StackExchange.Redis users need to add sslprotocols=tls12 to their connection string...
:update: Version 1.2.0 of CacheManager was released with the 1.x branch targeting .NetStandard 2.0, including the change to the new redis client version. ## Breaking Change I will drop any...
Add compress flag to configuration to support compressing the binary content after serialization compression was available for json as seperate serializer, but in order to support compression for additional serializers...
This changes the retrytimeout to use Thread.Sleep as we cannot use Task.Delay in this context due to risk of deadlocks.
Hello, I'm using Cachemanager core (v 1.2.0 ) with the following config ``` var definition = new CouchbaseClientDefinition(); configuration.GetSection("CoucheDb").Bind(definition); var clientConfig = new ClientConfiguration(definition); ICacheManager CacheInstance = CacheFactory.Build(settings => {...
Issue to track progress / discussion around creating an example website using ASP.NET Core. - DI example code - Configuration example code - Usage (with ValuesController only?) - What would...
Hi, We are using Redis as our backplane and would like to prevent the CacheManager exceptions from throwing when there is a connection exception as it short circuits a lot...