com.noir.common.lock.properties.redis.RedisPoolProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-distributed-lock-starter Show documentation
Show all versions of spring-boot-distributed-lock-starter Show documentation
A distributed lock springboot supports
package com.noir.common.lock.properties.redis;
import lombok.Data;
import lombok.ToString;
@Data
@ToString
public class RedisPoolProperties {
private int maxIdle;
private int minIdle;
private int maxActive;
private int maxWait;
private int connTimeout;
private int soTimeout;
private int size;
private int masterConnectionPoolSize;
private int slaveConnectionPoolSize;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy