MethodCache.Fody icon indicating copy to clipboard operation
MethodCache.Fody copied to clipboard

A method cache Fody plugin

Results 11 MethodCache.Fody issues
Sort by recently updated
recently updated
newest added

Support the usage of caches based on the [IDistributedCache](https://docs.microsoft.com/en-us/dotnet/api/microsoft.extensions.caching.distributed.idistributedcache?view=dotnet-plat-ext-3.1) interface. For the first iteration only the following synchronous methods will be used: ```csharp // IDistributedCache interface byte[] Get(string key); //...

enhancement