Microsoft.Extensions.Caching.CSRedis icon indicating copy to clipboard operation
Microsoft.Extensions.Caching.CSRedis copied to clipboard

分布式缓存,替代 Microsoft.Extensions.Caching.Redis

Results 2 Microsoft.Extensions.Caching.CSRedis issues
Sort by recently updated
recently updated
newest added

```csharp using Microsoft.Extensions.Caching.Distributed; IDistributedCache cache = xxxx; object obj1 = new xxxx(); cache.SetObject("key1", obj1); object obj2 = cache.GetObject("key1"); T obj3 = cache.GetObject("key1"); ``` ## 内部使用 BinaryFormatter 序列化/反序列化 ```csharp public static...

Add DependencyInjection support. This makes the new lib act more like the Microsoft's one.