<< Click to Display Table of Contents >> Redis配置复制链接 |
•redis.clustername=yh-cluster
设置集群模式集群的名称。
•redis.connect.timeout=60000
redis服务器连接超时时间,单位毫秒(ms),默认为一分钟。
•redis.pool.maxTotal=-1
redis连接池中的最大连接数,默认为-1,表示不做限制。
•redis.pool.maxIdle=100
连接池允许的最大空闲连接数,默认为100。
•redis.pool.minIdle=10
确保最少空闲连接数,默认为10。
•redis.pool.maxWaitMillis=100
连接池资源耗尽时,调用者的最大等待时间,单位为毫秒(ms),默认为100毫秒。
•redis.pool.testWhileIdle=true
在空闲时检查连接池中的连接是否可用,默认为true。
•redis.pool.lifo=false
是否启用Redis的后进先出,默认不启用。
•redis.pool.testOnBorrow=true
从连接池中获取连接时校验是否可用,默认可用。
•redis.pool.testOnCreate=false
生成新连接时校验是否可用,默认不可用。
•redis.pool.testOnReturn=false
归还连接时校验是否可用,默认不可用。
•redis.pool.timeBetweenEvictionRunsMillis=300000
连接池中空闲资源的检测周期,单位为毫秒(ms),默认为5分钟。
•redis.pool.minEvictableIdleTimeMillis=864000000
连接池中连接最小空闲时间,单位为毫秒(ms),默认为10天。
•redis.pool.numTestsPerEvictionRun=10
做空闲检查时,每次的采样数,默认为10。
•dbfs.store.assetAndAuth.inRedis=true
控制是否往redis中存储资源信息,默认true。