CachingFramework.Redis icon indicating copy to clipboard operation
CachingFramework.Redis copied to clipboard

Distributed caching based on StackExchange.Redis and Redis. Includes support for tagging and is cluster-compatible.

Results 2 CachingFramework.Redis issues
Sort by recently updated
recently updated
newest added

Hi, this may or may not be an issue with the library. I'm trying to create a large list (over 100k items). Even though I have a vary large Azure...

I have a use case where I need to clear (invalidate) all the keys, Right now I'm using below code: ``` var tags = _cache.GetAllTags().ToArray(); await _cache.InvalidateKeysByTagAsync(tags); ``` but I...