1.多级缓存
2.优化热门帖子列表
(1)引入依赖并配置
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
application.properties
# caffeine
caffeine.posts.max-size=15 缓存空间缓存数量
caffeine.posts.expire-seconds=180 过期时间,当数据变化是不应该淘汰全部,因为缓存的是一整页,有一个变了都淘汰不合适