asp.net core 缓存

  

一、浏览器缓存

服务器如果返回 cache-control:max-age=60,则表示服务器通知浏览器端可以缓存这个内容60秒

        //缓存3秒
        [ResponseCache(Duration = 3)]
        [HttpGet]
        public DateTime get()
        {
            return DateTime.Now;
        }

 浏览器端可以选择禁用缓存。

 

二、服务端缓存

app.UseCors();
//在UseCors后,MapControllers前app.UseResponseCaching(); app.MapControllers();

 

posted @ 2021-12-26 20:38  富坚老贼  阅读(56)  评论(0编辑  收藏  举报