com.github.ciweigg.properties.RedissonSingleServerConfig Maven / Gradle / Ivy
package com.github.ciweigg.properties;
import lombok.Data;
/**
* 单节点配置
*/
@Data
public class RedissonSingleServerConfig {
private String address;
private Integer subscriptionConnectionMinimumIdleSize = 1;
private Integer subscriptionConnectionPoolSize = 50;
private Integer connectionMinimumIdleSize = 32;
private Integer connectionPoolSize = 64;
private Integer database = 0;
private Long dnsMonitoringInterval = 5000L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy