All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ciweigg.properties.RedissonSingleServerConfig Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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