(5) Mvc Core 缓存,session,日志等

  • 缓存

asp.net mvc core不再支持HttpContext.Cache,是显式的通过服务的形式支持
内存Cache( https://docs.microsoft.com/en-us/aspnet/core/performance/caching/memory)、
分布式Cache(https://docs.microsoft.com/en-us/aspnet/core/performance/caching/distributed)

原文地址:https://www.cnblogs.com/lyfingchow/p/7538149.html