You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
538 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#redis缓存
spring:
redis:
host: 121.41.26.225 #绑定的主机地址
database: 1
port: 6379 #指定Redis监听端口默认端口为6379
password: 123456
timeout: 5000 #当客户端闲置多长时间后关闭连接如果指定为0表示关闭该功能
jedis:
pool:
max-active: 20 #最大连接数:能够同时建立的“最大链接个数”
max-idle: 20 #最大空闲数空闲链接数大于maxIdle时将进行回收
max-wait: 1000 #最大等待时间单位ms