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

me.chanjar.weixin.open.solon.properties.RedisProperties Maven / Gradle / Ivy

There is a newer version: 3.0.0-M4
Show newest version
package me.chanjar.weixin.open.solon.properties;

import lombok.Data;

import java.io.Serializable;

/**
 * Redis配置.
 *
 * @author someone
 */
@Data
public class RedisProperties implements Serializable {
  private static final long serialVersionUID = -5924815351660074401L;

  /**
   * 主机地址.
   */
  private String host;

  /**
   * 端口号.
   */
  private int port = 6379;

  /**
   * 密码.
   */
  private String password;

  /**
   * 超时.
   */
  private int timeout = 2000;

  /**
   * 数据库.
   */
  private int database = 0;

  private Integer maxActive;
  private Integer maxIdle;
  private Integer maxWaitMillis;
  private Integer minIdle;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy