26 缓存.mp4 (119.02MB)

缓存简介

缓存的优点:

  • 提高网站的访问速度
  • 适用于不易改变的数据

缓存的缺点:

  • 仔细规划
  • 奇怪的副作用

缓存的地点:

  • 服务器(单服务器)
  • 缓存服务器(多服务器)
  • 客户端

    In-Memory 缓存

  • 最简单的

  • IMemoryCache
  • 适用于 Sticky Session(粘滞的会话)
  • 适用于任何类型的对象

Sticky Session:In-Memory 缓存存储在 Web 服务器的内存中,只有本服务器能访问到。当 Web 应用部署在多服务器时,需保证用户访问的服务器就是之前进行缓存的服务器。

通过 services.AddMemoryCache(); 在 Startup ConfigureServices 中启用内存缓存。

MemoryCacheEntryOptions:

  • Absolute expiration time 绝对过期时间
  • Sliding expiration time:每次请求访问缓存后,都会重置缓存的过期时间
  • 缓存优先级
  • PostEvictionDelegate:缓存数据被清除时调用该委托

在 AlbumController 中使用 In-Memory Cache:

  1. // GET: Album
  2. public async Task<ActionResult> Index()
  3. {
  4. if (!_memoryCache.TryGetValue(
  5. CacheEntryConstants.AlbumsOfToday,
  6. out List<Album> cachedAlbums))
  7. {
  8. cachedAlbums = await _albumService.GetAllAsync();
  9. var cacheEntryOptions = new MemoryCacheEntryOptions()
  10. .SetSlidingExpiration(TimeSpan.FromSeconds(30));
  11. cacheEntryOptions.RegisterPostEvictionCallback(FillCache, this);
  12. _memoryCache.Set(CacheEntryConstants.AlbumsOfToday, cachedAlbums, cacheEntryOptions);
  13. }
  14. return View(cachedAlbums);
  15. }
  16. private void FillCache(object key, object value, EvictionReason reason, object state)
  17. {
  18. // 不具体实现
  19. Console.WriteLine("Cache entry is evicted!");
  20. }

Cache Tag Helper

格式:<cache>@await Component.InvokeAsync("xxx")</cache>

  • 服务器端
  • 实际使用 IMemoryCache,也要求 Sticky Session

属性:

  • enabled
  • expires-on:绝对过期时间
  • expires-after
  • expires-sliding
  • vary-by-header:如果请求的 header 变了,缓存就需要刷新
  • vary-by-query
  • vary-by-route
  • vary-by-cookie
  • vary-by-user
  • vary-by
  • priority

示例:

  1. <cache expires-after="@TimeSpan.FromSeconds(30)">
  2. @await Component.InvokeAsync("InternetStatus")
  3. </cache>

分布式缓存

image.png
特点:

  • 无需 Sticky Session
  • 可扩展
  • Web 服务器重启不会影响缓存
  • 性能更好

接口与常用方法:

  • IDistributedCache
  • Get, GetAsync
  • Set, SetAsync
  • Refresh, RefreshAsync
  • Remove, RemoveAsync

类型:

  • 分布式 Memory Cache(仅适合开发时使用)
  • 分布式 Sql Server Cache
  • 分布式 Redis Cache(推荐)

Redis Cache

通过 Docker 安装 Redis:docker pull redis

如果拉取速度很慢,推荐使用阿里云的镜像加速器(简单教程)。

运行容器:docker run --name my-redis -d -p 6379:6379 redis
命名 暴露端口 6379 镜像名
image.png

docker ps 查看运行状态:
image.png

docker run -it --link my-redis:my-redis --rm redis redis-cli -h my-redis -p 6379
image.png

  • -it:interactive
  • —link my-redis:链接到 my-redis
  • :my-redis:在里面的名也叫 my-redis
  • —rm:容器停止后就删除容器
  • redis:镜像是 redis
  • redis-cli:运行里面的 redis-cli 程序
  • -h my-redis:hostname 叫 my-redis
  • -p 6379:端口 6379

测试 redis:
image.png

打开 NuGet 安装 Redis:
image.png

在 Startup 中配置 Redis:

  1. services.AddDistributedRedisCache(options =>
  2. {
  3. options.Configuration = "localhost";
  4. options.InstanceName = "redis-for-albums";
  5. });

在 AlbumController 中使用 Redis:

  1. private readonly ILogger<AlbumController> _logger;
  2. private readonly IDistributedCache _distributedCache;
  3. private readonly IAlbumService _albumService;
  4. private readonly HtmlEncoder _htmlEncoder;
  5. public AlbumController(
  6. IAlbumService albumService,
  7. HtmlEncoder htmlEncoder,
  8. ILogger<AlbumController> logger,
  9. IDistributedCache distributedCache)
  10. {
  11. _albumService = albumService;
  12. _htmlEncoder = htmlEncoder;
  13. _logger = logger;
  14. _distributedCache = distributedCache;
  15. }
  16. // GET: Album
  17. public async Task<ActionResult> Index()
  18. {
  19. List<Album> cachedAlbums;
  20. var cachedAlbumsString = _distributedCache.Get(CacheEntryConstants.AlbumsOfToday);
  21. if (cachedAlbumsString == null)
  22. {
  23. cachedAlbums = await _albumService.GetAllAsync();
  24. var serializedString = JsonConvert.SerializeObject(cachedAlbums);
  25. byte[] encodedAlbums = Encoding.UTF8.GetBytes(serializedString);
  26. var cacheEntryOptions = new DistributedCacheEntryOptions()
  27. .SetSlidingExpiration(TimeSpan.FromSeconds(30));
  28. _distributedCache.Set(CacheEntryConstants.AlbumsOfToday, encodedAlbums, cacheEntryOptions);
  29. }
  30. else
  31. {
  32. byte[] encodedAlbums = _distributedCache.Get(CacheEntryConstants.AlbumsOfToday);
  33. var serializedString = Encoding.UTF8.GetString(encodedAlbums);
  34. cachedAlbums = JsonConvert.DeserializeObject<List<Album>>(serializedString);
  35. }
  36. return View(cachedAlbums);
  37. }

Response 缓存

  • 基于 Header
  • 客户端缓存
  • 使用 ResponseCache Attribute

参数:

  • Location
  • Duration
  • NoStore
  • VaryByHeader

在配置 MVC 中间件时配置 Response 缓存:

  1. services.AddMvc(options =>
  2. {
  3. options.Filters.Add(new AutoValidateAntiforgeryTokenAttribute());
  4. options.Filters.Add<LogResourceFilter>();
  5. options.CacheProfiles.Add("Default",new CacheProfile
  6. {
  7. Duration = 60
  8. });
  9. options.CacheProfiles.Add("Never", new CacheProfile
  10. {
  11. Location = ResponseCacheLocation.None,
  12. NoStore = true
  13. });
  14. });

Response 缓存的使用:

  1. // 手动配置
  2. [ResponseCache(Duration = 30, Location = ResponseCacheLocation.Client)]
  3. public IActionResult Index()
  4. {
  5. _logger.LogInformation(MyLogEventIds.HomePage, "Visiting Home Index ...");
  6. return View();
  7. }
  8. // 通过指定 CacheProfile 进行配置
  9. [ResponseCache(CacheProfileName = "Default")]
  10. public IActionResult Privacy()
  11. {
  12. return View();
  13. }

注:

  1. 必须使用非 VS 调试启动的浏览器打开页面才能测试 Response 缓存效果
  2. 刷新页面时 Response 缓存不会起效
  3. Response 缓存中间件的相关内容请参考官方文档

    压缩

    压缩传输的数据。通常针对 1K 以上的数据。

详细内容参考官方文档:Response compression in ASP.NET Core