打赏
摘要: 缓存接口 ICacheService using System; using System.Collections.Generic; using System.Threading.Tasks; namespace WebAppNetCore.Interface { public interface 阅读全文
posted @ 2018-04-11 21:20 cksun 阅读(1888) 评论(0) 推荐(0)
摘要: 说到内存缓存大家可能立马想到了HttpRuntime.Cache,它位于System.Web命名空间下,但是在ASP.NET Core中System.Web已经不复存在。今儿个就简单的聊聊如何在ASP.NET Core中使用内存缓存。我们一般将经常访问但是又不是经常改变的数据放进缓存是再好不过了,这 阅读全文
posted @ 2018-04-11 14:00 cksun 阅读(308) 评论(0) 推荐(0)