Spring Boot Redis缓存
目录[ 隐藏 ]
Spring Boot Redis缓存

在这篇文章中,我们将设置一个示例Spring启动应用程序并将其与Redis Cache 集成。虽然Redis是一个开源内存数据结构存储,用作数据库,缓存和消息代理,但本课程仅演示缓存集成。
我们将使用Spring Initializr工具快速设置项目。
Spring Boot Redis项目设置
我们将使用Spring Initializr工具快速设置项目。我们将使用3个依赖项,如下所示:
下载项目并解压缩。我们使用H2数据库依赖,因为我们将使用嵌入式数据库,一旦应用程序停止,它将丢失所有数据。
Spring Boot Redis缓存Maven依赖项
虽然我们已经使用该工具完成了设置,但如果您想手动设置它,我们将为此项目使用Maven构建系统,这里是我们使用的依赖项:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- for JPA support -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- for embedded database support -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
确保从maven中心使用Spring Boot的稳定版本。
定义模型
要将对象保存到Redis数据库,我们使用基本字段定义Person模型对象:
package com.journaldev.rediscachedemo;
import javax.persistence.*;
import java.io.Serializable;
@Entity
public class User implements Serializable {
private static final long serialVersionUID = 7156526077883281623L;
@Id
@SequenceGenerator(name = "SEQ_GEN", sequenceName = "SEQ_USER", allocationSize = 1)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQ_GEN")
private Long id;
private String name;
private long followers;
public User() {
}
public User(String name, long followers) {
this.name = name;
this.followers = followers;
}
//standard getters and setters
@Override
public String toString() {
return String.format("User{id=%d, name='%s', followers=%d}", id, name, followers);
}
}
这是一个标准的POJO,有吸气剂和固定剂。
配置Redis缓存
使用Spring Boot和已经与Maven一起工作的必需依赖项,我们可以在application.properties文件中配置只有三行的本地Redis实例:
# Redis Config
spring.cache.type=redis
spring.redis.host=localhost
spring.redis.port=6379
另外,@EnableCaching在Spring Boot主类上使用注释:
package com.journaldev.rediscachedemo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
@SpringBootApplication
@EnableCaching
public class Application implements CommandLineRunner {
private final Logger LOG = LoggerFactory.getLogger(getClass());
private final UserRepository userRepository;
@Autowired
public Application(UserRepository userRepository) {
this.userRepository = userRepository;
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@Override
public void run(String... strings) {
//Populating embedded database here
LOG.info("Saving users. Current user count is {}.", userRepository.count());
User shubham = new User("Shubham", 2000);
User pankaj = new User("Pankaj", 29000);
User lewis = new User("Lewis", 550);
userRepository.save(shubham);
userRepository.save(pankaj);
userRepository.save(lewis);
LOG.info("Done saving users. Data: {}.", userRepository.findAll());
}
}
我们已经添加了一个CommandLineRunner,因为我们想要在嵌入式H2数据库中填充一些示例数据。
定义存储库
在我们展示Redis如何工作之前,我们将为JPA相关功能定义一个Repository:
package com.journaldev.rediscachedemo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface UserRepository extends JpaRepository { }
它现在没有方法调用,因为我们不需要任何方法调用。
定义控制器
控制器是调用Redis缓存以进行操作的位置。实际上,这是最好的地方,因为缓存与它直接相关,请求甚至不必输入服务代码来等待缓存的结果。
这是控制器骨架:
package com.journaldev.rediscachedemo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.web.bind.annotation.*;
@RestController
public class UserController {
private final Logger LOG = LoggerFactory.getLogger(getClass());
private final UserRepository userRepository;
@Autowired
public UserController(UserRepository userRepository) {
this.userRepository = userRepository;
}
...
}
现在,为了将某些内容放入缓存中,我们使用@Cacheable注释:
@Cacheable(value = "users", key = "#userId", unless = "#result.followers < 12000")
@RequestMapping(value = "/{userId}", method = RequestMethod.GET)
public User getUser(@PathVariable String userId) {
LOG.info("Getting user with ID {}.", userId);
return userRepository.findOne(Long.valueOf(userId));
}
在上面的映射中,getUser方法将一个人放入一个名为“users”的缓存中,通过键将该人识别为“userId”,并且只存储一个大于12000的关注者的用户。这样可以确保用户填充缓存谁很受欢迎,经常被查询。
另外,我们有意在API调用中添加了一个日志语句。现在让我们从Postman做一些API调用。这些是我们的电话:
localhost:8090/1
localhost:8090/1
localhost:8090/2
localhost:8090/2
如果我们注意到日志,这些将是:
... : Getting user with ID 1.
... : Getting user with ID 1.
... : Getting user with ID 2.
注意什么?我们进行了四次API调用,但只有三个日志语句。这是因为具有ID 2的用户拥有29000个关注者,因此,它的数据被缓存。这意味着当为它进行API调用时,数据从缓存中返回,并且没有为此进行数据库调用!
更新缓存
每当更新其实际对象值时,缓存值也应更新。这可以使用@CachePut注释完成:
@CachePut(value = "users", key = "#user.id")
@PutMapping("/update")
public User updatePersonByID(@RequestBody User user) {
userRepository.save(user);
return user;
}
这样,一个人再次通过他的ID识别并用结果更新。
清除缓存
如果要从实际数据库中删除某些数据,则不再需要将其保留在缓存中。我们可以使用@CacheEvict注释清除缓存数据:
@CacheEvict(value = "users", allEntries=true)
@DeleteMapping("/{id}")
public void deleteUserByID(@PathVariable Long id) {
LOG.info("deleting person with id {}", id);
userRepository.delete(id);
}
在最后一个映射中,我们只是驱逐了缓存条目而没有做任何其他事情。
运行Spring Boot Redis缓存应用程序
我们只需使用一个命令即可运行此应用程序:
mvn spring-boot:run
Redis缓存限制
尽管Redis速度非常快,但在64位系统上存储任何数据量仍然没有限制。它只能在32位系统上存储3GB的数据。更多可用内存可以带来更高的命中率,但是一旦Redis占用太多内存,这将会停止。
当缓存大小达到内存限制时,将删除旧数据以替换新数据。
摘要
在本课程中,我们研究了Redis Cache为我们提供快速数据交互的强大功能,以及我们如何将它与Spring Boot集成在一起,只需极少但功能强大的配置。请随时留下评论。
转载来源:https://www.journaldev.com/18141/spring-boot-redis-cache

921

被折叠的 条评论
为什么被折叠?



