springboot redis lettuce 配置文件
时间: 2023-08-19 15:06:03 浏览: 116
redis配置文件
4星 · 用户满意度95%
在Spring Boot中,你可以在`application.properties`或`application.yml`配置文件中配置Redis的连接信息。以下是一个示例的配置:
在`application.properties`中的配置示例:
```properties
# Redis连接信息
spring.redis.host=your-redis-host
spring.redis.port=your-redis-port
spring.redis.password=your-redis-password
# Lettuce连接池配置
spring.redis.lettuce.pool.max-active=10
spring.redis.lettuce.pool.max-idle=5
spring.redis.lettuce.pool.min-idle=2
spring.redis.lettuce.pool.max-wait=3000
```
在`application.yml`中的配置示例:
```yaml
# Redis连接信息
spring:
redis:
host: your-redis-host
port: your-redis-port
password: your-redis-password
# Lettuce连接池配置
spring:
redis:
lettuce:
pool:
max-active: 10
max-idle: 5
min-idle: 2
max-wait: 3000
```
你可以根据实际情况修改以上配置信息,将`your-redis-host`、`your-redis-port`和`your-redis-password`替换为实际的Redis主机名、端口号和密码。此外,你还可以根据需要调整Lettuce连接池的配置参数。完成配置后,Spring Boot应用程序将使用Lettuce连接到Redis服务器。
阅读全文