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.
I use Redis Desktop Manager (RDM) as a nice GUI client to our Redis instances. Up to this point, we've been using CacheManager with only a Redis handle (no in-memory)...
Hi I found some problem with CacheManager connected with issue https://github.com/MichaCo/CacheManager/issues/136 (IsExpired not working after extending absolute expiration) and commit https://github.com/MichaCo/CacheManager/commit/fb7ce8e4cb2c99e22f275a98197c93f691c17cc5 This change introduced very strange and unexpected behaviour when...
Since my test is a very few steps beyond the "Hello World" of your amazing CacheManager I'm pretty sure I'm failing somewhere but I'm totally blind and I can't get...
Hi @MichaCo , Is there a way to configure CacheManager to use a redis connection string in web.config's `` section, while enabling `enableKeyspaceNotifications`? I know there is a way to...
How can we use handle of existing ICacheManager in configuring new ICacheManager ? Currently, If we create two instance of ICacheManager and use the SystemRuntimeCacheHandle in both, it's still creates...
In version 2.x, Microsoft added a `SizeLimit` option to the `MemoryCacheOptions` and implemented a new eviction logic based off of that. If `SizeLimit` is set, each `CacheEntry` added to the...
I was doing some debugging and noticed that the redis put command uses a lua script which runs in fire and forget mode: https://github.com/MichaCo/CacheManager/blob/dev/src/CacheManager.StackExchange.Redis/RedisCacheHandle.cs#L637 Since lua scripts are preloaded into...
It seems that this has been discussed several times in the comments of the main website under various questions/comments. > Hi, > We are relying on cacheManager to cache REST...
This PR adds the package to support MessagePack serialization. Referent to #229.
The only way to configure the memory pressure or limits of the System.Runtime.Caching.MemoryCache based handle is via app/web.config. The implementation already supports named caches, there could be at least overloads...