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

kim.sesame.framework.lock.config.RedissonProperties Maven / Gradle / Ivy

package kim.sesame.framework.lock.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix = "redisson")
public class RedissonProperties {

    private int timeout = 3000;

    private String address;

    private String password;

    private int connectionPoolSize = 64;

    private int connectionMinimumIdleSize = 10;

    private int slaveConnectionPoolSize = 250;

    private int masterConnectionPoolSize = 250;

    private String[] sentinelAddresses;

    private String masterName;


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy