v0.1.7
🔀 New option
A new FusionCacheOptions.DistributedCacheKeyModifierMode
option has been added, so that you can now control how the cache key will be modified to be used in the distributed cache (Prefix
, Suffix
or None
).
The default value is Prefix
but, if for example you are having problems with Redis ACLs (which are prefix-based), you can change this to Suffix
(or even None
) to solve them.
🙏 Thanks
Thanks to RogerSep for the hint about Redis ACLs, I hope this will solve your problem!