在StackExchange.Redis源码里,这两个项目有什么区别?
我自己封装的Redis引用的是StackExchange.Redis
在web项目想使用数据保护,引用的是Microsoft.AspNetCore.DataProtection.Redis 但是这个库依赖StackExchange.Redis.StrongName
下面的代码问题就来了
提示这个类ConnectionMultiplexer同时存在于StackExchange.Redis和StackExchange.Redis.StrongName中
请告诉我应该怎么做?
相关问题
- Getting Redis Master address from Sentinel C#
- Configuring Redis to play nice with AppHarbor
- Why do we need Redis for running CKAN?
- Problem in deserialize redis-cache to objects in S
- wait for all promises to finish in nodejs with blu
https://github.com/aspnet/DataProtection/issues/245
看了这个issue我决定修改我封装的Redis库,引用StackExchange.Redis.StrongName,不在引用StackExchange.Redis,而封装的代码一行也不用修改。
What is the difference between StackExchange.Redis and StackExchange.Redis.StrongName?
肯定是有区别的