com.github.zhengframework.memcached.MemcachedConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-memcached Show documentation
Show all versions of zheng-memcached Show documentation
zheng framework module: memcached support
package com.github.zhengframework.memcached;
import com.github.zhengframework.configuration.ConfigurationDefine;
import com.github.zhengframework.configuration.annotation.ConfigurationInfo;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@ConfigurationInfo(prefix = "zheng.memcached", supportGroup = true)
public class MemcachedConfig implements ConfigurationDefine {
private String addresses = "localhost:11211";
private String username;
private String password;
private AuthType authType;
}