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

When using a cache [configuration as described here by Micha](https://github.com/MichaCo/CacheManager/issues/111#issuecomment-296699499), it's possible that Remove notifications don't get sent via the backplane. If I have 2 processes configured in that way...

We are using following code to connect to our caches (in-memory and Redis): ``` settings .WithSystemRuntimeCacheHandle() .WithExpiration(CacheManager.Core.ExpirationMode.Absolute, defaultExpiryTime) .And .WithRedisConfiguration(CacheManagerRedisConfigurationKey, connectionString) .WithMaxRetries(3) .WithRetryTimeout(100) .WithJsonSerializer() .WithRedisBackplane(CacheManagerRedisConfigurationKey) .WithRedisCacheHandle(CacheManagerRedisConfigurationKey, true) .WithExpiration(CacheManager.Core.ExpirationMode.Absolute, defaultExpiryTime); ```...

question

Fixes #303 A little less "standard" than a wrapping exception, but satisfies the requirements without functional change beyond the stack trace. Does lose the stack trace of BaseCacheManager:L130, instead doing...

Fixes #303 Breaking change in that the exception type thrown to the caller will not be the same. May not need a major version bump though since it's only a...

My largest concerns I foresee and defer to @MichaCo on the changes that should/should not be made: - [ ] Deviation from current centralized version - [ ] CLS Compliance,...

There are ways to 'rethrow' the exception directly rather than throw ex again (which will overwrite the StackTrace and says that the exception came from BaseCacheManager rather than the underlying...

Hi, We had issues with a web site of ours that freezes from time to time. Looking at the process dumps, there's thousands of threads (initiated by web requests) waiting...

I'm using cache **both in memory and redis**,and I'm trying to reload cache using the following steps: 1.**clear region**(which is already loaded from app start); 2.**add my new cache data**;...

I am using CacheManager for 2 layers of caching to increase speed across my applications. I'm using InMemory cache along with Redis as a back plane. I'm working with invalidating...

Hi, I am using AWS Redis service and I have a primary server and 1 readonly replica. In my app, most of the cache usage is readonly, so I tried...