ASP.NET 5.0 会话状态和 Azure 缓存

ASP.NET 5.0 Session State and Azure cache

我正在尝试使用 ASP.NET 5.0 会话状态中间件,我想将它与 Azure 缓存一起用作会话存储? 有人可以指出示例来实现这个吗?

在 ASP.NET 5 中,会话状态系统需要 IDistributedCache 的实现才能在服务提供者中可用(通过依赖注入)。因此,会话状态系统应该可以按原样使用;你只需要 IDistributedCache.

的 Redis 实现

ASP.NET5 Caching repo has a sample Redis distributed cache provider that uses Redis作为后备存储。

还有一个随附的 sample app 显示了分布式缓存提供程序的直接用法。

插入 Azure 缓存(基于 Redis)作为练习留给 reader(就是你!)。