1.网页端(浏览器)缓存: 适用用户只查询自己的信息接口,一个浏览完为一个缓存。直接在Get接口上增加 [ResponseCache(Duration = 5)],5为缓存时间,单位:S。
2.服务器缓存:适用公共接口不带参数查询。接口上增加[ResponseCache(Duration = 5)],builder.Services.AddResponseCaching(); app.UseResponseCaching();。
PS:如果使用 CORS 中间件时,必须在 UseResponseCaching 之前调用 UseCors。如果header包含 Authorization,Set-Cookie 标头,也不会缓存,因为这些用户信息缓存会引起数据混乱
3.内存缓存:适用服务端key-value存储,内存缓存基于 IMemoryCache。 IMemoryCache 表示存储在 Web 服务器内存中的缓存。
标签:缓存,接口,内存,IMemoryCache,Duration,UseResponseCaching From: https://www.cnblogs.com/wangtiantian/p/17874713.html